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

165 lines
5.6 KiB
PHP
Raw Normal View History

<?php
/**
* Local Delivery Shipping Method
*
* A simple shipping method allowing local delivery as a shipping method
*
2012-01-27 16:38:39 +00:00
* @class WC_Local_Delivery
* @package WooCommerce
* @category Shipping
* @author Patrick Garman (www.patrickgarman.com)
*/
2012-01-27 16:38:39 +00:00
class WC_Local_Delivery extends WC_Shipping_Method {
function __construct() {
$this->id = 'local_delivery';
2012-02-02 10:22:49 +00:00
$this->method_title = __('Local Delivery', 'woocommerce');
$this->init();
}
function init() {
// Load the form fields.
$this->init_form_fields();
// Load the settings.
$this->init_settings();
// Define user set variables
2012-03-30 15:13:01 +00:00
$this->enabled = empty( $this->settings['enabled'] ) ? 'no' : $this->settings['enabled'];
$this->title = empty( $this->settings['title'] ) ? '' : $this->settings['title'];
$this->fee = empty( $this->settings['fee'] ) ? '' : $this->settings['fee'];
$this->type = empty( $this->settings['type'] ) ? '' : $this->settings['type'];
$this->codes = empty( $this->settings['codes'] ) ? '' : $this->settings['codes'];
$this->availability = empty( $this->settings['availability'] ) ? '' : $this->settings['availability'];
$this->countries = empty( $this->settings['countries'] ) ? '' : $this->settings['countries'];
add_action('woocommerce_update_options_shipping_local_delivery', array(&$this, 'process_admin_options'));
}
function calculate_shipping( $package = array() ) {
global $woocommerce;
$fee = ( trim( $this->fee ) == '' ) ? 0 : $this->fee;
if ( $this->type =='fixed' ) $shipping_total = $this->fee;
if ( $this->type =='percent' ) $shipping_total = $package['contents_cost'] * ( $this->fee / 100 );
$rate = array(
'id' => $this->id,
'label' => $this->title,
'cost' => $shipping_total
);
$this->add_rate($rate);
}
function init_form_fields() {
global $woocommerce;
$this->form_fields = array(
'enabled' => array(
'title' => __( 'Enable', 'woocommerce' ),
'type' => 'checkbox',
'label' => __( 'Enable local delivery', 'woocommerce' ),
2012-01-31 19:25:50 +00:00
'default' => 'no'
),
'title' => array(
'title' => __( 'Title', 'woocommerce' ),
'type' => 'text',
'description' => __( 'This controls the title which the user sees during checkout.', 'woocommerce' ),
'default' => __( 'Local Delivery', 'woocommerce' )
),
'type' => array(
'title' => __( 'Fee Type', 'woocommerce' ),
'type' => 'select',
'description' => __( 'How to calculate delivery charges', 'woocommerce' ),
'default' => 'fixed',
'options' => array(
'fixed' => __('Fixed Amount', 'woocommerce'),
'percent' => __('Percentage of Cart Total', 'woocommerce'),
),
),
'fee' => array(
'title' => __( 'Delivery Fee', 'woocommerce' ),
'type' => 'text',
'description' => __( 'What fee do you want to charge for local delivery, disregarded if you choose free. Leave blank to disable.', 'woocommerce' ),
'default' => ''
),
'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.', 'woocommerce' ),
'default' => ''
),
2012-03-25 02:34:59 +00:00
'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
)
);
}
function admin_options() {
global $woocommerce; ?>
2012-01-19 17:49:48 +00:00
<h3><?php echo $this->method_title; ?></h3>
2012-01-14 20:51:18 +00:00
<p><?php _e('Local delivery is a simple shipping method for delivering orders locally.', 'woocommerce'); ?></p>
<table class="form-table">
<?php $this->generate_settings_html(); ?>
</table> <?php
}
2012-04-13 11:35:14 +00:00
function is_available( $package ) {
global $woocommerce;
if ($this->enabled=="no") return false;
2012-03-25 02:34:59 +00:00
// If post codes are listed, let's use them.
$codes = '';
2012-03-25 02:34:59 +00:00
if($this->codes != '') {
foreach(explode(',',$this->codes) as $code) {
$codes[] = $this->clean($code);
}
}
2012-03-25 02:34:59 +00:00
if (is_array($codes))
2012-04-13 11:35:14 +00:00
if ( ! in_array($this->clean( $package['destination']['postcode'] ), $codes))
2012-03-05 11:07:36 +00:00
return false;
2012-03-25 02:34:59 +00:00
// Either post codes not setup, or post codes are in array... so lefts check countries for backwards compatability.
$ship_to_countries = '';
if ($this->availability == 'specific') :
$ship_to_countries = $this->countries;
else :
if (get_option('woocommerce_allowed_countries')=='specific') :
$ship_to_countries = get_option('woocommerce_specific_allowed_countries');
endif;
endif;
2012-03-05 11:07:36 +00:00
2012-03-25 02:34:59 +00:00
if (is_array($ship_to_countries))
2012-04-13 11:35:14 +00:00
if (!in_array( $package['destination']['country'] , $ship_to_countries))
2012-03-25 02:34:59 +00:00
return false;
// Yay! We passed!
return apply_filters( 'woocommerce_shipping_' . $this->id . '_is_available', true );
}
function clean($code) {
return str_replace('-','',sanitize_title($code));
}
}
2012-01-27 16:38:39 +00:00
function add_local_delivery_method($methods) { $methods[] = 'WC_Local_Delivery'; return $methods; }
add_filter('woocommerce_shipping_methods','add_local_delivery_method');