woocommerce/includes/gateways/cod/class-wc-gateway-cod.php

180 lines
5.4 KiB
PHP
Raw Normal View History

2012-05-26 16:25:07 +00:00
<?php
2013-02-20 17:14:46 +00:00
if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
2012-05-26 16:25:07 +00:00
/**
* Cash on Delivery Gateway
2012-08-15 18:15:06 +00:00
*
2012-05-26 16:25:07 +00:00
* Provides a Cash on Delivery Payment Gateway.
*
* @class WC_Gateway_COD
2012-08-15 18:15:06 +00:00
* @extends WC_Payment_Gateway
* @version 2.1.0
2012-08-15 18:15:06 +00:00
* @package WooCommerce/Classes/Payment
* @author WooThemes
2012-05-26 16:25:07 +00:00
*/
class WC_Gateway_COD extends WC_Payment_Gateway {
2012-08-15 18:15:06 +00:00
/**
* Constructor for the gateway.
*/
public function __construct() {
$this->id = 'cod';
$this->icon = apply_filters( 'woocommerce_cod_icon', '' );
$this->method_title = __( 'Cash on Delivery', 'woocommerce' );
$this->method_description = __( 'Have your customers pay with cash (or by other means) upon delivery.', 'woocommerce' );
$this->has_fields = false;
2012-08-15 18:15:06 +00:00
// Load the settings
2013-01-02 13:38:33 +00:00
$this->init_form_fields();
2012-05-26 16:25:07 +00:00
$this->init_settings();
2012-08-15 18:15:06 +00:00
// Get settings
$this->title = $this->get_option( 'title' );
$this->description = $this->get_option( 'description' );
$this->instructions = $this->get_option( 'instructions' );
$this->enable_for_methods = $this->get_option( 'enable_for_methods', array() );
2012-08-15 18:15:06 +00:00
add_action( 'woocommerce_update_options_payment_gateways_' . $this->id, array( $this, 'process_admin_options' ) );
add_action( 'woocommerce_thankyou_cod', array( $this, 'thankyou' ) );
2012-05-26 16:25:07 +00:00
}
2012-08-15 18:15:06 +00:00
/**
* Initialise Gateway Settings Form Fields
*/
public function init_form_fields() {
global $woocommerce;
2012-11-27 16:22:47 +00:00
$shipping_methods = array();
2012-11-27 16:22:47 +00:00
if ( is_admin() )
foreach ( $woocommerce->shipping->load_shipping_methods() as $method ) {
$shipping_methods[ $method->id ] = $method->get_title();
}
2012-11-27 16:22:47 +00:00
2012-05-26 16:25:07 +00:00
$this->form_fields = array(
'enabled' => array(
'title' => __( 'Enable COD', 'woocommerce' ),
'label' => __( 'Enable Cash on Delivery', 'woocommerce' ),
'type' => 'checkbox',
2012-08-15 18:15:06 +00:00
'description' => '',
'default' => 'no'
2012-08-15 18:15:06 +00:00
),
2012-05-26 16:25:07 +00:00
'title' => array(
'title' => __( 'Title', 'woocommerce' ),
'type' => 'text',
'description' => __( 'Payment method description that the customer will see on your checkout.', 'woocommerce' ),
'default' => __( 'Cash on Delivery', 'woocommerce' ),
'desc_tip' => true,
2012-08-15 18:15:06 +00:00
),
2012-05-26 16:25:07 +00:00
'description' => array(
'title' => __( 'Description', 'woocommerce' ),
'type' => 'textarea',
2012-08-15 18:15:06 +00:00
'description' => __( 'Payment method description that the customer will see on your website.', 'woocommerce' ),
'default' => __( 'Pay with cash upon delivery.', 'woocommerce' ),
'desc_tip' => true,
2012-08-15 18:15:06 +00:00
),
2012-05-26 16:25:07 +00:00
'instructions' => array(
'title' => __( 'Instructions', 'woocommerce' ),
'type' => 'textarea',
2012-08-15 18:15:06 +00:00
'description' => __( 'Instructions that will be added to the thank you page.', 'woocommerce' ),
'default' => __( 'Pay with cash upon delivery.', 'woocommerce' ),
'desc_tip' => true,
2012-08-15 18:15:06 +00:00
),
'enable_for_methods' => array(
2013-10-11 14:27:04 +00:00
'title' => __( 'Enable for shipping methods', 'woocommerce' ),
'type' => 'multiselect',
'class' => 'chosen_select',
'css' => 'width: 450px;',
'default' => '',
'description' => __( 'If COD is only available for certain methods, set it up here. Leave blank to enable for all methods.', 'woocommerce' ),
'options' => $shipping_methods,
'desc_tip' => true,
'custom_attributes' => array(
'data-placeholder' => __( 'Select shipping methods', 'woocommerce' )
)
)
2012-05-26 16:25:07 +00:00
);
}
2012-08-15 18:15:06 +00:00
/**
* Check If The Gateway Is Available For Use
*
* @return bool
*/
public function is_available() {
global $woocommerce;
2012-11-27 16:22:47 +00:00
if ( ! empty( $this->enable_for_methods ) ) {
2012-11-27 16:22:47 +00:00
// Only apply if all packages are being shipped via local pickup
$chosen_shipping_methods = array_unique( WC()->session->get( 'chosen_shipping_methods' ) );
$check_method = false;
if ( is_page( woocommerce_get_page_id( 'checkout' ) ) && ! empty( $wp->query_vars['order-pay'] ) ) {
2012-11-27 16:22:47 +00:00
$order_id = absint( $wp->query_vars['order-pay'] );
$order = new WC_Order( $order_id );
2012-11-27 16:22:47 +00:00
if ( $order->shipping_method )
$check_method = $order->shipping_method;
2012-11-27 16:22:47 +00:00
} elseif ( empty( $chosen_shipping_methods ) || sizeof( $chosen_shipping_methods ) > 1 ) {
$check_method = false;
} elseif ( sizeof( $chosen_shipping_methods ) == 1 ) {
$check_method = $chosen_shipping_methods[0];
}
2012-11-27 16:22:47 +00:00
if ( ! $check_method )
return false;
2012-11-27 16:22:47 +00:00
2012-09-07 17:26:13 +00:00
$found = false;
2012-11-27 16:22:47 +00:00
foreach ( $this->enable_for_methods as $method_id ) {
if ( strpos( $check_method, $method_id ) === 0 ) {
$found = true;
break;
}
}
2012-11-27 16:22:47 +00:00
if ( ! $found )
return false;
}
2012-11-27 16:22:47 +00:00
return parent::is_available();
}
2012-11-27 16:22:47 +00:00
2012-08-15 18:15:06 +00:00
/**
* Process the payment and return the result
*
* @param int $order_id
* @return array
*/
public function process_payment( $order_id ) {
2012-05-26 16:25:07 +00:00
$order = new WC_Order( $order_id );
// Mark as processing (payment won't be taken until delivery)
$order->update_status( 'processing', __( 'Payment to be made upon delivery.', 'woocommerce' ) );
2012-08-15 18:15:06 +00:00
2012-05-26 16:25:07 +00:00
// Reduce stock levels
$order->reduce_order_stock();
2012-08-15 18:15:06 +00:00
2012-05-26 16:25:07 +00:00
// Remove cart
WC()->cart->empty_cart();
2012-08-15 18:15:06 +00:00
2012-05-26 16:25:07 +00:00
// Return thankyou redirect
return array(
'result' => 'success',
'redirect' => $this->get_return_url( $order )
2012-05-26 16:25:07 +00:00
);
}
2012-08-15 18:15:06 +00:00
/**
* Output for the order received page.
*/
public function thankyou_page() {
if ( $this->instructions )
echo wpautop( wptexturize( $this->instructions ) );
2012-05-26 16:25:07 +00:00
}
}