woocommerce/classes/shipping/class-wc-local-pickup.php

164 lines
4.0 KiB
PHP
Raw Normal View History

2012-05-26 16:25:07 +00:00
<?php
/**
* Local Pickup Shipping Method
2012-08-14 22:43:48 +00:00
*
2012-05-26 16:25:07 +00:00
* A simple shipping method allowing free pickup as a shipping method
*
* @class WC_Local_Pickup
2012-08-14 22:43:48 +00:00
* @version 1.6.4
* @package WooCommerce/Classes/Shipping
* @author WooThemes
*/
2012-05-26 16:25:07 +00:00
class WC_Local_Pickup extends WC_Shipping_Method {
2012-08-14 22:43:48 +00:00
/**
* __construct function.
*
* @access public
* @return void
*/
function __construct() {
2012-05-26 16:25:07 +00:00
$this->id = 'local_pickup';
$this->method_title = __('Local Pickup', 'woocommerce');
$this->init();
2012-08-14 22:43:48 +00:00
}
/**
* init function.
*
* @access public
* @return void
*/
2012-05-26 16:25:07 +00:00
function init() {
// Load the form fields.
$this->init_form_fields();
2012-08-14 22:43:48 +00:00
2012-05-26 16:25:07 +00:00
// Load the settings.
$this->init_settings();
2012-08-14 22:43:48 +00:00
2012-05-26 16:25:07 +00:00
// Define user set variables
$this->enabled = $this->settings['enabled'];
$this->title = $this->settings['title'];
$this->availability = $this->settings['availability'];
$this->countries = $this->settings['countries'];
2012-08-14 22:43:48 +00:00
2012-05-26 16:25:07 +00:00
add_action('woocommerce_update_options_shipping_'.$this->id, array(&$this, 'process_admin_options'));
}
2012-08-14 22:43:48 +00:00
/**
* calculate_shipping function.
*
* @access public
* @return void
*/
function calculate_shipping() {
2012-05-26 16:25:07 +00:00
$rate = array(
'id' => $this->id,
'label' => $this->title,
);
2012-08-14 22:43:48 +00:00
$this->add_rate($rate);
2012-05-26 16:25:07 +00:00
}
2012-08-14 22:43:48 +00:00
/**
* init_form_fields function.
*
* @access public
* @return void
*/
2012-05-26 16:25:07 +00:00
function init_form_fields() {
global $woocommerce;
$this->form_fields = array(
'enabled' => array(
2012-08-14 22:43:48 +00:00
'title' => __( 'Enable', 'woocommerce' ),
'type' => 'checkbox',
'label' => __( 'Enable local pickup', 'woocommerce' ),
2012-05-26 16:25:07 +00:00
'default' => 'no'
2012-08-14 22:43:48 +00:00
),
2012-05-26 16:25:07 +00:00
'title' => array(
2012-08-14 22:43:48 +00:00
'title' => __( 'Title', 'woocommerce' ),
'type' => 'text',
'description' => __( 'This controls the title which the user sees during checkout.', 'woocommerce' ),
2012-05-26 16:25:07 +00:00
'default' => __( 'Local Pickup', 'woocommerce' )
),
'availability' => array(
2012-08-14 22:43:48 +00:00
'title' => __( 'Method availability', 'woocommerce' ),
'type' => 'select',
2012-05-26 16:25:07 +00:00
'default' => 'all',
'class' => 'availability',
'options' => array(
'all' => __('All allowed countries', 'woocommerce'),
'specific' => __('Specific Countries', 'woocommerce')
)
),
'countries' => array(
2012-08-14 22:43:48 +00:00
'title' => __( 'Specific Countries', 'woocommerce' ),
'type' => 'multiselect',
2012-05-26 16:25:07 +00:00
'class' => 'chosen_select',
'css' => 'width: 450px;',
'default' => '',
'options' => $woocommerce->countries->countries
2012-08-14 22:43:48 +00:00
)
2012-05-26 16:25:07 +00:00
);
}
2012-08-14 22:43:48 +00:00
/**
* admin_options function.
*
* @access public
* @return void
*/
2012-05-26 16:25:07 +00:00
function admin_options() {
global $woocommerce; ?>
<h3><?php echo $this->method_title; ?></h3>
<p><?php _e('Local pickup is a simple method which allows the customer to pick up their order themselves.', 'woocommerce'); ?></p>
<table class="form-table">
<?php $this->generate_settings_html(); ?>
</table> <?php
}
2012-08-14 22:43:48 +00:00
/**
* is_available function.
*
* @access public
* @param array $package
* @return bool
*/
function is_available( $package ) {
global $woocommerce;
$is_available = true;
if ( $this->enabled == 'no' ) {
$is_available = false;
} else {
$ship_to_countries = '';
if ( $this->availability == 'specific' ) {
$ship_to_countries = $this->countries;
} elseif ( get_option( 'woocommerce_allowed_countries' ) == 'specific' ) {
$ship_to_countries = get_option( 'woocommerce_specific_allowed_countries' );
}
if ( is_array( $ship_to_countries ) && ! in_array( $package['destination']['country'], $ship_to_countries ) ) {
$is_available = false;
}
}
2012-06-05 08:13:25 +00:00
return apply_filters( 'woocommerce_shipping_' . $this->id . '_is_available', $is_available, $package );
}
2012-05-26 16:25:07 +00:00
}
2012-08-14 22:43:48 +00:00
/**
* add_local_pickup_method function.
*
2012-08-15 18:15:06 +00:00
* @package WooCommerce/Classes/Shipping
2012-08-14 22:43:48 +00:00
* @access public
* @param array $methods
* @return array
*/
function add_local_pickup_method($methods) {
$methods[] = 'WC_Local_Pickup';
return $methods;
}
add_filter('woocommerce_shipping_methods','add_local_pickup_method');