id = 'local_pickup'; $this->method_title = __( 'Local Pickup', 'woocommerce' ); $this->init(); } /** * init function. * * @access public * @return void */ function init() { // Load the settings. $this->init_settings(); // Define user set variables $this->enabled = $this->get_option( 'enabled' ); $this->title = $this->get_option( 'title' ); $this->codes = $this->get_option( 'codes' ); $this->availability = $this->get_option( 'availability' ); $this->countries = $this->get_option( 'countries' ); // Actions add_action( 'woocommerce_update_options_shipping_' . $this->id, array( $this, 'process_admin_options' ) ); add_filter( 'woocommerce_customer_taxable_address', array( $this, 'taxable_address' ) ); add_action( 'woocommerce_shipping_method_chosen', array( $this, 'method_chosen' ) ); } /** * calculate_shipping function. * * @access public * @return void */ function calculate_shipping() { $rate = array( 'id' => $this->id, 'label' => $this->title, ); $this->add_rate($rate); } /** * init_form_fields function. * * @access public * @return void */ function init_form_fields() { global $woocommerce; $this->form_fields = array( 'enabled' => array( 'title' => __( 'Enable', 'woocommerce' ), 'type' => 'checkbox', 'label' => __( 'Enable local pickup', 'woocommerce' ), 'default' => 'no' ), 'title' => array( 'title' => __( 'Title', 'woocommerce' ), 'type' => 'text', 'description' => __( 'This controls the title which the user sees during checkout.', 'woocommerce' ), 'default' => __( 'Local Pickup', 'woocommerce' ) ), 'codes' => array( 'title' => __( 'Zip/Post Codes', 'woocommerce' ), 'type' => 'textarea', 'description' => __( 'What zip/post codes would you like to offer delivery to? Separate codes with a comma. Accepts wildcards, e.g. P* will match a postcode of PE30.', 'woocommerce' ), 'default' => '' ), 'availability' => array( 'title' => __( 'Method availability', 'woocommerce' ), 'type' => 'select', 'default' => 'all', 'class' => 'availability', 'options' => array( 'all' => __( 'All allowed countries', 'woocommerce' ), 'specific' => __( 'Specific Countries', 'woocommerce' ) ) ), 'countries' => array( 'title' => __( 'Specific Countries', 'woocommerce' ), 'type' => 'multiselect', 'class' => 'chosen_select', 'css' => 'width: 450px;', 'default' => '', 'options' => $woocommerce->countries->countries ), 'apply_base_tax' => array( 'title' => __( 'Apply base tax rate', 'woocommerce' ), 'type' => 'checkbox', 'label' => __( 'When this shipping method is chosen, apply the base tax rate rather than for the customer\'s given address.', 'woocommerce' ), 'default' => 'no' ), ); } /** * admin_options function. * * @access public * @return void */ function admin_options() { global $woocommerce; ?>