WC_Order_Item_Type_Data_Store_Interface{}WC 1.0

WC Order Item Data Store Interface

Functions that must be defined by order item store classes.

No Hooks.

Usage

$WC_Order_Item_Type_Data_Store_Interface = new WC_Order_Item_Type_Data_Store_Interface();
// use class methods

Methods

  1. public save_item_data( &$item )

WC_Order_Item_Type_Data_Store_Interface{} code WC 8.6.1

interface WC_Order_Item_Type_Data_Store_Interface {
	/**
	 * Saves an item's data to the database / item meta.
	 * Ran after both create and update, so $item->get_id() will be set.
	 *
	 * @param WC_Order_Item $item Item object.
	 */
	public function save_item_data( &$item );
}