関数
DeliveryForm::init()
Registers hooks for delivery form
戻り値 戻り値
ファイル: src/Components/DeliveryForm/DeliveryForm.php
public function init() { add_action('wp_enqueue_scripts', function () { $semantic = new Semantic(); $semantic->loadSegmentCss(); $semantic->loadDimmerCss(); }); add_action('wcexaap_checkout_review_delivery_method', [$this, 'deliveryMethod'], 10, 2); add_action('wcexaap_checkout_review_delivery_date', [$this, 'deliveryDate'], 10, 2); add_action('wcexaap_checkout_review_delivery_time', [$this, 'deliveryTime'], 10, 2); }