関数
DeliveryForm::deliveryDate( string $value = '', string $out = '' )
配達日の入力にVue.jsのバインディングを挿入する
パラメータ パラメータ
- $value
(文字列) (任意)
- $out
(文字列) (任意)
ファイル: src/Components/DeliveryForm/DeliveryForm.php
public function deliveryDate($value = '', $out = '') { $html = "<select name='offer[delivery_date]' id='delivery_date_select' class='delivery_date' >\n"; $html .= "</select>\n"; /** * Filters the delivery form date select HTML shown on the Quickpay page * * @param string $html */ $html = apply_filters('wcexaap_checkout_review_filter_delivery_date', $html); if ($out == 'return') { return $html; } else { echo $html; } }