2016-06-21 19:10:09 +00:00
|
|
|
<?php
|
|
|
|
if ( ! defined( 'ABSPATH' ) ) {
|
|
|
|
exit;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Order Line Item (product).
|
|
|
|
*
|
2017-03-15 16:36:53 +00:00
|
|
|
* @version 3.0.0
|
|
|
|
* @since 3.0.0
|
2016-06-21 19:10:09 +00:00
|
|
|
* @package WooCommerce/Classes
|
|
|
|
* @author WooThemes
|
|
|
|
*/
|
|
|
|
class WC_Order_Item_Product extends WC_Order_Item {
|
|
|
|
|
|
|
|
/**
|
2017-03-15 16:36:53 +00:00
|
|
|
* Order Data array. This is the core order data exposed in APIs since 3.0.0.
|
2016-11-21 14:30:56 +00:00
|
|
|
*
|
2017-03-15 16:36:53 +00:00
|
|
|
* @since 3.0.0
|
2016-06-21 19:10:09 +00:00
|
|
|
* @var array
|
|
|
|
*/
|
2016-11-17 21:30:34 +00:00
|
|
|
protected $extra_data = array(
|
2016-08-16 11:36:38 +00:00
|
|
|
'product_id' => 0,
|
|
|
|
'variation_id' => 0,
|
2016-08-24 15:02:19 +00:00
|
|
|
'quantity' => 1,
|
2016-08-16 11:36:38 +00:00
|
|
|
'tax_class' => '',
|
|
|
|
'subtotal' => 0,
|
|
|
|
'subtotal_tax' => 0,
|
|
|
|
'total' => 0,
|
|
|
|
'total_tax' => 0,
|
|
|
|
'taxes' => array(
|
2016-06-21 19:10:09 +00:00
|
|
|
'subtotal' => array(),
|
2016-08-27 01:46:45 +00:00
|
|
|
'total' => array(),
|
2016-06-21 19:10:09 +00:00
|
|
|
),
|
|
|
|
);
|
|
|
|
|
|
|
|
/*
|
|
|
|
|--------------------------------------------------------------------------
|
|
|
|
| Setters
|
|
|
|
|--------------------------------------------------------------------------
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
2016-08-16 11:36:38 +00:00
|
|
|
* Set quantity.
|
2016-11-21 14:30:56 +00:00
|
|
|
*
|
2016-06-21 19:10:09 +00:00
|
|
|
* @param int $value
|
2016-08-24 09:46:29 +00:00
|
|
|
* @throws WC_Data_Exception
|
2016-06-21 19:10:09 +00:00
|
|
|
*/
|
2016-08-16 11:36:38 +00:00
|
|
|
public function set_quantity( $value ) {
|
2016-11-17 21:30:34 +00:00
|
|
|
$this->set_prop( 'quantity', wc_stock_amount( $value ) );
|
2016-06-21 19:10:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Set tax class.
|
2016-11-21 14:30:56 +00:00
|
|
|
*
|
2016-06-21 19:10:09 +00:00
|
|
|
* @param string $value
|
2016-08-24 09:46:29 +00:00
|
|
|
* @throws WC_Data_Exception
|
2016-06-21 19:10:09 +00:00
|
|
|
*/
|
|
|
|
public function set_tax_class( $value ) {
|
2017-01-25 21:38:13 +00:00
|
|
|
if ( $value && ! in_array( $value, WC_Tax::get_tax_class_slugs() ) ) {
|
2016-08-25 12:05:27 +00:00
|
|
|
$this->error( 'order_item_product_invalid_tax_class', __( 'Invalid tax class', 'woocommerce' ) );
|
2016-08-17 15:53:01 +00:00
|
|
|
}
|
2016-11-17 21:30:34 +00:00
|
|
|
$this->set_prop( 'tax_class', $value );
|
2016-06-21 19:10:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2016-11-17 21:30:34 +00:00
|
|
|
* Set Product ID
|
2016-11-21 14:30:56 +00:00
|
|
|
*
|
2016-06-21 19:10:09 +00:00
|
|
|
* @param int $value
|
2016-08-24 09:46:29 +00:00
|
|
|
* @throws WC_Data_Exception
|
2016-06-21 19:10:09 +00:00
|
|
|
*/
|
|
|
|
public function set_product_id( $value ) {
|
2016-08-24 13:37:19 +00:00
|
|
|
if ( $value > 0 && 'product' !== get_post_type( absint( $value ) ) ) {
|
2016-08-25 12:05:27 +00:00
|
|
|
$this->error( 'order_item_product_invalid_product_id', __( 'Invalid product ID', 'woocommerce' ) );
|
2016-08-23 13:58:44 +00:00
|
|
|
}
|
2016-11-17 21:30:34 +00:00
|
|
|
$this->set_prop( 'product_id', absint( $value ) );
|
2016-06-21 19:10:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Set variation ID.
|
2016-11-21 14:30:56 +00:00
|
|
|
*
|
2016-06-21 19:10:09 +00:00
|
|
|
* @param int $value
|
2016-08-24 09:46:29 +00:00
|
|
|
* @throws WC_Data_Exception
|
2016-06-21 19:10:09 +00:00
|
|
|
*/
|
|
|
|
public function set_variation_id( $value ) {
|
2016-08-24 13:37:19 +00:00
|
|
|
if ( $value > 0 && 'product_variation' !== get_post_type( $value ) ) {
|
2016-08-25 12:05:27 +00:00
|
|
|
$this->error( 'order_item_product_invalid_variation_id', __( 'Invalid variation ID', 'woocommerce' ) );
|
2016-08-23 13:58:44 +00:00
|
|
|
}
|
2016-11-17 21:30:34 +00:00
|
|
|
$this->set_prop( 'variation_id', absint( $value ) );
|
2016-06-21 19:10:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Line subtotal (before discounts).
|
2016-11-21 14:30:56 +00:00
|
|
|
*
|
2016-06-21 19:10:09 +00:00
|
|
|
* @param string $value
|
2016-08-24 09:46:29 +00:00
|
|
|
* @throws WC_Data_Exception
|
2016-06-21 19:10:09 +00:00
|
|
|
*/
|
|
|
|
public function set_subtotal( $value ) {
|
2017-11-06 18:21:48 +00:00
|
|
|
$this->set_prop( 'subtotal', wc_format_decimal( $value ) );
|
2016-06-21 19:10:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Line total (after discounts).
|
2016-11-21 14:30:56 +00:00
|
|
|
*
|
2016-06-21 19:10:09 +00:00
|
|
|
* @param string $value
|
2016-08-24 09:46:29 +00:00
|
|
|
* @throws WC_Data_Exception
|
2016-06-21 19:10:09 +00:00
|
|
|
*/
|
|
|
|
public function set_total( $value ) {
|
2017-11-06 18:21:48 +00:00
|
|
|
$this->set_prop( 'total', wc_format_decimal( $value ) );
|
2016-08-25 12:05:27 +00:00
|
|
|
|
|
|
|
// Subtotal cannot be less than total
|
2017-05-18 14:59:07 +00:00
|
|
|
if ( '' === $this->get_subtotal() || $this->get_subtotal() < $this->get_total() ) {
|
2016-08-25 12:05:27 +00:00
|
|
|
$this->set_subtotal( $value );
|
|
|
|
}
|
2016-06-21 19:10:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Line subtotal tax (before discounts).
|
2016-11-21 14:30:56 +00:00
|
|
|
*
|
2016-06-21 19:10:09 +00:00
|
|
|
* @param string $value
|
2016-08-24 09:46:29 +00:00
|
|
|
* @throws WC_Data_Exception
|
2016-06-21 19:10:09 +00:00
|
|
|
*/
|
2016-11-18 13:52:09 +00:00
|
|
|
public function set_subtotal_tax( $value ) {
|
2016-11-17 21:30:34 +00:00
|
|
|
$this->set_prop( 'subtotal_tax', wc_format_decimal( $value ) );
|
2016-06-21 19:10:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Line total tax (after discounts).
|
2016-11-21 14:30:56 +00:00
|
|
|
*
|
2016-06-21 19:10:09 +00:00
|
|
|
* @param string $value
|
2016-08-24 09:46:29 +00:00
|
|
|
* @throws WC_Data_Exception
|
2016-06-21 19:10:09 +00:00
|
|
|
*/
|
2016-11-18 13:52:09 +00:00
|
|
|
public function set_total_tax( $value ) {
|
2016-11-17 21:30:34 +00:00
|
|
|
$this->set_prop( 'total_tax', wc_format_decimal( $value ) );
|
2016-06-21 19:10:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2016-08-25 12:05:27 +00:00
|
|
|
* Set line taxes and totals for passed in taxes.
|
2016-11-21 14:30:56 +00:00
|
|
|
*
|
2016-06-21 19:10:09 +00:00
|
|
|
* @param array $raw_tax_data
|
2016-08-24 09:46:29 +00:00
|
|
|
* @throws WC_Data_Exception
|
2016-06-21 19:10:09 +00:00
|
|
|
*/
|
|
|
|
public function set_taxes( $raw_tax_data ) {
|
|
|
|
$raw_tax_data = maybe_unserialize( $raw_tax_data );
|
|
|
|
$tax_data = array(
|
|
|
|
'total' => array(),
|
2016-08-27 01:46:45 +00:00
|
|
|
'subtotal' => array(),
|
2016-06-21 19:10:09 +00:00
|
|
|
);
|
|
|
|
if ( ! empty( $raw_tax_data['total'] ) && ! empty( $raw_tax_data['subtotal'] ) ) {
|
|
|
|
$tax_data['subtotal'] = array_map( 'wc_format_decimal', $raw_tax_data['subtotal'] );
|
2016-08-25 12:05:27 +00:00
|
|
|
$tax_data['total'] = array_map( 'wc_format_decimal', $raw_tax_data['total'] );
|
|
|
|
|
|
|
|
// Subtotal cannot be less than total!
|
|
|
|
if ( array_sum( $tax_data['subtotal'] ) < array_sum( $tax_data['total'] ) ) {
|
|
|
|
$tax_data['subtotal'] = $tax_data['total'];
|
|
|
|
}
|
2016-06-21 19:10:09 +00:00
|
|
|
}
|
2016-11-17 21:30:34 +00:00
|
|
|
$this->set_prop( 'taxes', $tax_data );
|
2016-08-25 12:05:27 +00:00
|
|
|
$this->set_total_tax( array_sum( $tax_data['total'] ) );
|
|
|
|
$this->set_subtotal_tax( array_sum( $tax_data['subtotal'] ) );
|
2016-06-21 19:10:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Set variation data (stored as meta data - write only).
|
2016-11-21 14:30:56 +00:00
|
|
|
*
|
2016-06-21 19:10:09 +00:00
|
|
|
* @param array $data Key/Value pairs
|
|
|
|
*/
|
2017-07-24 09:43:34 +00:00
|
|
|
public function set_variation( $data = array() ) {
|
|
|
|
if ( is_array( $data ) ) {
|
|
|
|
foreach ( $data as $key => $value ) {
|
|
|
|
$this->add_meta_data( str_replace( 'attribute_', '', $key ), $value, true );
|
|
|
|
}
|
2016-06-21 19:10:09 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Set properties based on passed in product object.
|
2016-11-21 14:30:56 +00:00
|
|
|
*
|
2016-06-21 19:10:09 +00:00
|
|
|
* @param WC_Product $product
|
2016-08-24 09:46:29 +00:00
|
|
|
* @throws WC_Data_Exception
|
2016-06-21 19:10:09 +00:00
|
|
|
*/
|
|
|
|
public function set_product( $product ) {
|
2016-08-17 15:53:01 +00:00
|
|
|
if ( ! is_a( $product, 'WC_Product' ) ) {
|
2016-08-25 12:05:27 +00:00
|
|
|
$this->error( 'order_item_product_invalid_product', __( 'Invalid product', 'woocommerce' ) );
|
2016-06-21 19:10:09 +00:00
|
|
|
}
|
2016-11-02 18:50:42 +00:00
|
|
|
if ( $product->is_type( 'variation' ) ) {
|
|
|
|
$this->set_product_id( $product->get_parent_id() );
|
|
|
|
$this->set_variation_id( $product->get_id() );
|
|
|
|
$this->set_variation( is_callable( array( $product, 'get_variation_attributes' ) ) ? $product->get_variation_attributes() : array() );
|
|
|
|
} else {
|
|
|
|
$this->set_product_id( $product->get_id() );
|
|
|
|
}
|
2016-11-16 12:17:00 +00:00
|
|
|
$this->set_name( $product->get_name() );
|
2016-08-17 15:53:01 +00:00
|
|
|
$this->set_tax_class( $product->get_tax_class() );
|
2016-06-21 19:10:09 +00:00
|
|
|
}
|
|
|
|
|
2016-11-17 21:30:34 +00:00
|
|
|
/**
|
|
|
|
* Set meta data for backordered products.
|
|
|
|
*/
|
|
|
|
public function set_backorder_meta() {
|
2017-02-01 13:54:18 +00:00
|
|
|
$product = $this->get_product();
|
|
|
|
if ( $product && $product->backorders_require_notification() && $product->is_on_backorder( $this->get_quantity() ) ) {
|
2017-07-25 03:54:03 +00:00
|
|
|
$this->add_meta_data( apply_filters( 'woocommerce_backordered_item_meta_name', __( 'Backordered', 'woocommerce' ), $this ), $this->get_quantity() - max( 0, $product->get_stock_quantity() ), true );
|
2016-11-17 21:30:34 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-06-21 19:10:09 +00:00
|
|
|
/*
|
|
|
|
|--------------------------------------------------------------------------
|
|
|
|
| Getters
|
|
|
|
|--------------------------------------------------------------------------
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get order item type.
|
2016-11-21 14:30:56 +00:00
|
|
|
*
|
2016-06-21 19:10:09 +00:00
|
|
|
* @return string
|
|
|
|
*/
|
2016-11-18 11:33:31 +00:00
|
|
|
public function get_type() {
|
2016-06-21 19:10:09 +00:00
|
|
|
return 'line_item';
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get product ID.
|
2016-11-21 14:30:56 +00:00
|
|
|
*
|
2016-11-17 21:30:34 +00:00
|
|
|
* @param string $context
|
2016-06-21 19:10:09 +00:00
|
|
|
* @return int
|
|
|
|
*/
|
2016-11-17 21:30:34 +00:00
|
|
|
public function get_product_id( $context = 'view' ) {
|
|
|
|
return $this->get_prop( 'product_id', $context );
|
2016-06-21 19:10:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get variation ID.
|
2016-11-21 14:30:56 +00:00
|
|
|
*
|
2016-11-17 21:30:34 +00:00
|
|
|
* @param string $context
|
2016-06-21 19:10:09 +00:00
|
|
|
* @return int
|
|
|
|
*/
|
2016-11-17 21:30:34 +00:00
|
|
|
public function get_variation_id( $context = 'view' ) {
|
|
|
|
return $this->get_prop( 'variation_id', $context );
|
2016-06-21 19:10:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2016-08-16 11:36:38 +00:00
|
|
|
* Get quantity.
|
2016-11-21 14:30:56 +00:00
|
|
|
*
|
2016-11-17 21:30:34 +00:00
|
|
|
* @param string $context
|
2016-06-21 19:10:09 +00:00
|
|
|
* @return int
|
|
|
|
*/
|
2016-11-17 21:30:34 +00:00
|
|
|
public function get_quantity( $context = 'view' ) {
|
|
|
|
return $this->get_prop( 'quantity', $context );
|
2016-06-21 19:10:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get tax class.
|
2016-11-21 14:30:56 +00:00
|
|
|
*
|
2016-11-17 21:30:34 +00:00
|
|
|
* @param string $context
|
2016-06-21 19:10:09 +00:00
|
|
|
* @return string
|
|
|
|
*/
|
2016-11-17 21:30:34 +00:00
|
|
|
public function get_tax_class( $context = 'view' ) {
|
|
|
|
return $this->get_prop( 'tax_class', $context );
|
2016-06-21 19:10:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get subtotal.
|
2016-11-21 14:30:56 +00:00
|
|
|
*
|
2016-11-17 21:30:34 +00:00
|
|
|
* @param string $context
|
2016-06-21 19:10:09 +00:00
|
|
|
* @return string
|
|
|
|
*/
|
2016-11-17 21:30:34 +00:00
|
|
|
public function get_subtotal( $context = 'view' ) {
|
|
|
|
return $this->get_prop( 'subtotal', $context );
|
2016-06-21 19:10:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get subtotal tax.
|
2016-11-21 14:30:56 +00:00
|
|
|
*
|
2016-11-17 21:30:34 +00:00
|
|
|
* @param string $context
|
2016-06-21 19:10:09 +00:00
|
|
|
* @return string
|
|
|
|
*/
|
2016-11-17 21:30:34 +00:00
|
|
|
public function get_subtotal_tax( $context = 'view' ) {
|
|
|
|
return $this->get_prop( 'subtotal_tax', $context );
|
2016-06-21 19:10:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get total.
|
2016-11-21 14:30:56 +00:00
|
|
|
*
|
2016-11-17 21:30:34 +00:00
|
|
|
* @param string $context
|
2016-06-21 19:10:09 +00:00
|
|
|
* @return string
|
|
|
|
*/
|
2016-11-17 21:30:34 +00:00
|
|
|
public function get_total( $context = 'view' ) {
|
|
|
|
return $this->get_prop( 'total', $context );
|
2016-06-21 19:10:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get total tax.
|
2016-11-21 14:30:56 +00:00
|
|
|
*
|
2016-11-17 21:30:34 +00:00
|
|
|
* @param string $context
|
2016-06-21 19:10:09 +00:00
|
|
|
* @return string
|
|
|
|
*/
|
2016-11-17 21:30:34 +00:00
|
|
|
public function get_total_tax( $context = 'view' ) {
|
|
|
|
return $this->get_prop( 'total_tax', $context );
|
2016-06-21 19:10:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2017-03-21 11:20:39 +00:00
|
|
|
* Get taxes.
|
2016-11-21 14:30:56 +00:00
|
|
|
*
|
2016-11-17 21:30:34 +00:00
|
|
|
* @param string $context
|
2016-06-21 19:10:09 +00:00
|
|
|
* @return array
|
|
|
|
*/
|
2016-11-17 21:30:34 +00:00
|
|
|
public function get_taxes( $context = 'view' ) {
|
|
|
|
return $this->get_prop( 'taxes', $context );
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the associated product.
|
|
|
|
*
|
|
|
|
* @return WC_Product|bool
|
|
|
|
*/
|
|
|
|
public function get_product() {
|
|
|
|
if ( $this->get_variation_id() ) {
|
|
|
|
$product = wc_get_product( $this->get_variation_id() );
|
|
|
|
} else {
|
|
|
|
$product = wc_get_product( $this->get_product_id() );
|
|
|
|
}
|
|
|
|
|
|
|
|
// Backwards compatible filter from WC_Order::get_product_from_item()
|
|
|
|
if ( has_filter( 'woocommerce_get_product_from_item' ) ) {
|
2016-12-21 19:01:47 +00:00
|
|
|
$product = apply_filters( 'woocommerce_get_product_from_item', $product, $this, $this->get_order() );
|
2016-11-17 21:30:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return apply_filters( 'woocommerce_order_item_product', $product, $this );
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the Download URL.
|
|
|
|
*
|
|
|
|
* @param int $download_id
|
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
public function get_item_download_url( $download_id ) {
|
|
|
|
$order = $this->get_order();
|
|
|
|
|
|
|
|
return $order ? add_query_arg( array(
|
|
|
|
'download_file' => $this->get_variation_id() ? $this->get_variation_id() : $this->get_product_id(),
|
|
|
|
'order' => $order->get_order_key(),
|
|
|
|
'email' => urlencode( $order->get_billing_email() ),
|
|
|
|
'key' => $download_id,
|
|
|
|
), trailingslashit( home_url() ) ) : '';
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get any associated downloadable files.
|
|
|
|
*
|
|
|
|
* @return array
|
|
|
|
*/
|
|
|
|
public function get_item_downloads() {
|
2017-04-19 15:53:31 +00:00
|
|
|
$files = array();
|
|
|
|
$product = $this->get_product();
|
|
|
|
$order = $this->get_order();
|
|
|
|
$product_id = $this->get_variation_id() ? $this->get_variation_id() : $this->get_product_id();
|
2016-11-17 21:30:34 +00:00
|
|
|
|
|
|
|
if ( $product && $order && $product->is_downloadable() && $order->is_download_permitted() ) {
|
2017-01-03 15:03:55 +00:00
|
|
|
$data_store = WC_Data_Store::load( 'customer-download' );
|
|
|
|
$customer_downloads = $data_store->get_downloads( array(
|
2016-11-17 21:30:34 +00:00
|
|
|
'user_email' => $order->get_billing_email(),
|
|
|
|
'order_id' => $order->get_id(),
|
2017-04-19 15:53:31 +00:00
|
|
|
'product_id' => $product_id,
|
2016-11-17 21:30:34 +00:00
|
|
|
) );
|
2017-01-03 15:03:55 +00:00
|
|
|
foreach ( $customer_downloads as $customer_download ) {
|
|
|
|
$download_id = $customer_download->get_download_id();
|
2016-11-17 21:30:34 +00:00
|
|
|
|
|
|
|
if ( $product->has_file( $download_id ) ) {
|
2017-07-11 12:45:35 +00:00
|
|
|
$file = $product->get_file( $download_id );
|
|
|
|
$files[ $download_id ] = $file->get_data();
|
|
|
|
$files[ $download_id ]['downloads_remaining'] = $customer_download->get_downloads_remaining();
|
|
|
|
$files[ $download_id ]['access_expires'] = $customer_download->get_access_expires();
|
|
|
|
$files[ $download_id ]['download_url'] = add_query_arg( array(
|
2017-04-19 15:53:31 +00:00
|
|
|
'download_file' => $product_id,
|
|
|
|
'order' => $order->get_order_key(),
|
|
|
|
'email' => urlencode( $order->get_billing_email() ),
|
|
|
|
'key' => $download_id,
|
|
|
|
), trailingslashit( home_url() ) );
|
2016-11-17 21:30:34 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return apply_filters( 'woocommerce_get_item_downloads', $files, $this, $order );
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get tax status.
|
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
public function get_tax_status() {
|
|
|
|
$product = $this->get_product();
|
|
|
|
return $product ? $product->get_tax_status() : 'taxable';
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
|--------------------------------------------------------------------------
|
|
|
|
| Array Access Methods
|
|
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
|
2017-07-17 10:10:52 +00:00
|
|
|
| For backwards compatibility with legacy arrays.
|
2016-11-17 21:30:34 +00:00
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* offsetGet for ArrayAccess/Backwards compatibility.
|
|
|
|
*
|
|
|
|
* @deprecated Add deprecation notices in future release.
|
|
|
|
* @param string $offset
|
|
|
|
* @return mixed
|
|
|
|
*/
|
|
|
|
public function offsetGet( $offset ) {
|
|
|
|
if ( 'line_subtotal' === $offset ) {
|
|
|
|
$offset = 'subtotal';
|
|
|
|
} elseif ( 'line_subtotal_tax' === $offset ) {
|
|
|
|
$offset = 'subtotal_tax';
|
|
|
|
} elseif ( 'line_total' === $offset ) {
|
|
|
|
$offset = 'total';
|
|
|
|
} elseif ( 'line_tax' === $offset ) {
|
|
|
|
$offset = 'total_tax';
|
|
|
|
} elseif ( 'line_tax_data' === $offset ) {
|
|
|
|
$offset = 'taxes';
|
2016-12-19 23:06:39 +00:00
|
|
|
} elseif ( 'qty' === $offset ) {
|
|
|
|
$offset = 'quantity';
|
2016-11-17 21:30:34 +00:00
|
|
|
}
|
|
|
|
return parent::offsetGet( $offset );
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* offsetSet for ArrayAccess/Backwards compatibility.
|
|
|
|
*
|
|
|
|
* @deprecated Add deprecation notices in future release.
|
|
|
|
* @param string $offset
|
|
|
|
* @param mixed $value
|
|
|
|
*/
|
|
|
|
public function offsetSet( $offset, $value ) {
|
|
|
|
if ( 'line_subtotal' === $offset ) {
|
|
|
|
$offset = 'subtotal';
|
|
|
|
} elseif ( 'line_subtotal_tax' === $offset ) {
|
|
|
|
$offset = 'subtotal_tax';
|
|
|
|
} elseif ( 'line_total' === $offset ) {
|
|
|
|
$offset = 'total';
|
|
|
|
} elseif ( 'line_tax' === $offset ) {
|
|
|
|
$offset = 'total_tax';
|
|
|
|
} elseif ( 'line_tax_data' === $offset ) {
|
|
|
|
$offset = 'taxes';
|
2016-12-19 23:06:39 +00:00
|
|
|
} elseif ( 'qty' === $offset ) {
|
|
|
|
$offset = 'quantity';
|
2016-11-17 21:30:34 +00:00
|
|
|
}
|
|
|
|
parent::offsetSet( $offset, $value );
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* offsetExists for ArrayAccess
|
|
|
|
*
|
|
|
|
* @param string $offset
|
|
|
|
* @return bool
|
|
|
|
*/
|
|
|
|
public function offsetExists( $offset ) {
|
2016-12-19 23:06:39 +00:00
|
|
|
if ( in_array( $offset, array( 'line_subtotal', 'line_subtotal_tax', 'line_total', 'line_tax', 'line_tax_data', 'item_meta_array', 'item_meta', 'qty' ) ) ) {
|
2016-11-17 21:30:34 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return parent::offsetExists( $offset );
|
|
|
|
}
|
2016-06-21 19:10:09 +00:00
|
|
|
}
|