関数
MemberLoginPage::loginButton()
Amazonログインボタン
戻り値 戻り値
ファイル: src/Views/MemberLoginPage/MemberLoginPage.php
public function loginButton() {
/**
* Filters the message shown above the Amazon Pay login button on the 会員ログイン page
*
* @important
* @param string $text Default: 'Amazonアカウントで新規会員登録を完了している方は下のボタンでログインしてください。'
*/
$infomessage = apply_filters(
'wcexaap_filter_member_login_page_info_message',
__('For customers who created their account with Amazon, please use the button below to login.', 'wcexaap')
);
$this->load();
?>
<div id="wcexaap-button-wrapper">
<div class="info-message">
<?php echo $infomessage ?>
</div>
<div id="<?php echo esc_attr(Checkout::AMAZON_PAY_BUTTON_ID); ?>"></div>
</div>
<?php
}