説明
会員ページおよびカートページにおける住所入力フィールドを表示します。
第一引数の $type の値に応じて、会員用、購入者用、配送先用の住所入力フィールドを切り替えます。
使い方
<?php uesces_addressform( $type, $data ); ?> <?php uesces_addressform( $type, $data, $out ); ?>
パラメータ
- $type
- (HTML)表示タイプ。
- ‘member’:会員編集ページにて入力フィールドを表示
- ‘customer’:チェックアウト遷移でのお客様情報入力ページにて入力フィールドを表示
- ‘delivery’:チェックアウト遷移での配送・支払方法ページにて入力フィールドを表示
- ‘confirm’:チェックアウト遷移での内容確認ページにて各種情報を表示
- $data
- データ。
- $out
- (文字列)戻り値の出力を echo するか return するかを決める。初期値は空文字(echo)。
- ‘return’:return する
- ‘(空文字)’:echo する(初期値)
戻り値
- (HTML)
-
- ‘return’:そのまま return
- ‘空文字’:echo
用例
・マイページ画面の場合 <table> <?php uesces_addressform( 'delivery', usces_memberinfo(NULL), 'echo' ); ?> </table> ・お客様情報画面の場合 <table> <?php uesces_addressform( 'customer', $usces_entries, 'echo' ); ?> </table> ・配送・支払情報画面の場合 <table> <?php uesces_addressform( 'delivery', $usces_entries, 'echo' ); ?> </table> ・購入内容確認画面の場合 <table> <?php uesces_addressform( 'confirm', $usces_entries, 'echo' ); ?> </table>
フック
- usces_filter_furigana_confirm_customer(フィルター)
- usces_filter_furigana_confirm_delivery(フィルター)
- usces_filter_shipping_address_info(フィルター)
- usces_filters_addressform_name_label(フィルター)
- usces_filter_apply_addressform_confirm(フィルター)
- usces_filter_after_country(フィルター)
- usces_filter_after_states(フィルター)
- usces_filter_after_address1(フィルター)
- usces_filter_after_address2(フィルター)
- usces_filter_after_address3(フィルター)
- usces_filter_after_tel(フィルター)
- usces_filter_after_fax(フィルター)
- usces_filter_furigana_form(フィルター)
- usces_filter_addressform_zipcode(フィルター)
- usces_filter_after_zipcode(フィルター)
ソースファイル
usc-e-shop/functions/template_func.php