woocommerce/includes/data-stores/class-wc-order-item-shippin...

79 lines
2.2 KiB
PHP
Raw Normal View History

2016-11-17 21:30:34 +00:00
<?php
2018-01-15 12:24:05 +00:00
/**
* WC Order Item Shipping Data Store
*
* @version 3.0.0
* @package data-stores
*/
2016-11-17 21:30:34 +00:00
if ( ! defined( 'ABSPATH' ) ) {
exit;
}
/**
2018-01-15 12:24:05 +00:00
* WC_Order_Item_Shipping_Data_Store class.
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 {
2016-11-24 11:50:34 +00:00
/**
* Data stored in meta keys.
2018-01-15 12:24:05 +00:00
*
2017-03-15 16:36:53 +00:00
* @since 3.0.0
2016-11-24 11:50:34 +00:00
* @var array
*/
2018-01-15 14:31:05 +00:00
protected $internal_meta_keys = array( 'method_id', 'instance_id', 'cost', 'total_tax', 'taxes' );
2016-11-24 11:50:34 +00:00
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
2018-01-15 12:24:05 +00:00
* @param WC_Order_Item_Shipping $item Item to read to.
* @throws Exception If invalid shipping order 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();
2018-03-07 19:16:01 +00:00
$item->set_props(
array(
'method_id' => get_metadata( 'order_item', $id, 'method_id', true ),
'instance_id' => get_metadata( 'order_item', $id, 'instance_id', true ),
'total' => get_metadata( 'order_item', $id, 'cost', true ),
'taxes' => get_metadata( 'order_item', $id, 'taxes', true ),
)
);
2018-01-15 14:49:55 +00:00
// BW compat.
if ( '' === $item->get_instance_id() && strstr( $item->get_method_id(), ':' ) ) {
$legacy_method_id = explode( ':', $item->get_method_id() );
$item->set_method_id( $legacy_method_id[0] );
$item->set_instance_id( $legacy_method_id[1] );
}
$item->set_object_read( true );
2016-11-17 21:30:34 +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.
*
2017-03-15 16:36:53 +00:00
* @since 3.0.0
2018-01-15 12:24:05 +00:00
* @param WC_Order_Item_Shipping $item Item to save.
2016-11-17 21:30:34 +00:00
*/
public function save_item_data( &$item ) {
2018-01-19 14:36:08 +00:00
$id = $item->get_id();
$changes = $item->get_changes();
$meta_key_to_props = array(
'method_id' => 'method_id',
'instance_id' => 'instance_id',
'cost' => 'total',
'total_tax' => 'total_tax',
'taxes' => 'taxes',
);
$props_to_update = $this->get_props_to_update( $item, $meta_key_to_props, 'order_item' );
2018-01-19 14:36:08 +00:00
foreach ( $props_to_update as $meta_key => $prop ) {
update_metadata( 'order_item', $id, $meta_key, $item->{"get_$prop"}( 'edit' ) );
}
2016-11-17 21:30:34 +00:00
}
}