2016-11-17 21:30:34 +00:00
|
|
|
<?php
|
|
|
|
if ( ! defined( 'ABSPATH' ) ) {
|
|
|
|
exit;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* WC Order Item Shipping Data Store
|
|
|
|
*
|
2017-03-15 16:36:53 +00:00
|
|
|
* @version 3.0.0
|
2016-11-17 21:30:34 +00:00
|
|
|
* @category Class
|
2016-11-18 11:33:31 +00:00
|
|
|
* @author WooCommerce
|
2016-11-17 21:30:34 +00:00
|
|
|
*/
|
2016-11-22 13:54:51 +00:00
|
|
|
class WC_Order_Item_Shipping_Data_Store extends Abstract_WC_Order_Item_Type_Data_Store implements WC_Object_Data_Store_Interface, WC_Order_Item_Type_Data_Store_Interface {
|
2017-03-20 10:03:14 +00:00
|
|
|
|
2016-11-24 11:50:34 +00:00
|
|
|
/**
|
|
|
|
* Data stored in meta keys.
|
2017-03-15 16:36:53 +00:00
|
|
|
* @since 3.0.0
|
2016-11-24 11:50:34 +00:00
|
|
|
* @var array
|
|
|
|
*/
|
|
|
|
protected $internal_meta_keys = array( 'method_id', 'cost', 'total_tax', 'taxes' );
|
|
|
|
|
2016-11-17 21:30:34 +00:00
|
|
|
/**
|
|
|
|
* Read/populate data properties specific to this order item.
|
|
|
|
*
|
2017-03-15 16:36:53 +00:00
|
|
|
* @since 3.0.0
|
2017-03-20 10:03:14 +00:00
|
|
|
* @param WC_Order_Item_Shipping $item
|
2016-11-17 21:30:34 +00:00
|
|
|
*/
|
|
|
|
public function read( &$item ) {
|
|
|
|
parent::read( $item );
|
2017-02-01 00:44:16 +00:00
|
|
|
$id = $item->get_id();
|
2016-11-17 21:30:34 +00:00
|
|
|
$item->set_props( array(
|
2017-02-01 00:44:16 +00:00
|
|
|
'method_id' => get_metadata( 'order_item', $id, 'method_id', true ),
|
|
|
|
'total' => get_metadata( 'order_item', $id, 'cost', true ),
|
|
|
|
'taxes' => get_metadata( 'order_item', $id, 'taxes', true ),
|
2016-11-17 21:30:34 +00:00
|
|
|
) );
|
2016-12-18 18:04:14 +00:00
|
|
|
$item->set_object_read( true );
|
2016-11-17 21:30:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2016-11-18 11:33:31 +00:00
|
|
|
* Saves an item's data to the database / item meta.
|
2017-02-01 00:44:16 +00:00
|
|
|
* Ran after both create and update, so $id will be set.
|
2016-11-18 11:33:31 +00:00
|
|
|
*
|
2017-03-15 16:36:53 +00:00
|
|
|
* @since 3.0.0
|
2017-03-20 10:03:14 +00:00
|
|
|
* @param WC_Order_Item_Shipping $item
|
2016-11-17 21:30:34 +00:00
|
|
|
*/
|
|
|
|
public function save_item_data( &$item ) {
|
2017-02-01 09:53:53 +00:00
|
|
|
$id = $item->get_id();
|
|
|
|
$save_values = array(
|
|
|
|
'method_id' => $item->get_method_id( 'edit' ),
|
|
|
|
'cost' => $item->get_total( 'edit' ),
|
|
|
|
'total_tax' => $item->get_total_tax( 'edit' ),
|
|
|
|
'taxes' => $item->get_taxes( 'edit' ),
|
|
|
|
);
|
|
|
|
foreach ( $save_values as $key => $value ) {
|
|
|
|
update_metadata( 'order_item', $id, $key, $value );
|
|
|
|
}
|
2016-11-17 21:30:34 +00:00
|
|
|
}
|
|
|
|
}
|