2016-11-08 09:39:47 +00:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* WC Data Store.
|
|
|
|
*
|
2018-03-19 23:21:10 +00:00
|
|
|
* @package WooCommerce\Classes
|
|
|
|
* @since 3.0.0
|
|
|
|
* @version 3.0.0
|
|
|
|
*/
|
|
|
|
|
|
|
|
defined( 'ABSPATH' ) || exit;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Data store class.
|
2016-11-08 09:39:47 +00:00
|
|
|
*/
|
|
|
|
class WC_Data_Store {
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Contains an instance of the data store class that we are working with.
|
2018-03-19 23:21:10 +00:00
|
|
|
*
|
|
|
|
* @var WC_Data_Store
|
2016-11-08 09:39:47 +00:00
|
|
|
*/
|
|
|
|
private $instance = null;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Contains an array of default WC supported data stores.
|
|
|
|
* Format of object name => class name.
|
|
|
|
* Example: 'product' => 'WC_Product_Data_Store_CPT'
|
2017-06-02 16:19:54 +00:00
|
|
|
* You can also pass something like product_<type> for product stores and
|
2017-07-10 05:56:28 +00:00
|
|
|
* that type will be used first when available, if a store is requested like
|
2016-11-08 09:39:47 +00:00
|
|
|
* this and doesn't exist, then the store would fall back to 'product'.
|
|
|
|
* Ran through `woocommerce_data_stores`.
|
2018-03-19 23:21:10 +00:00
|
|
|
*
|
|
|
|
* @var array
|
2016-11-08 09:39:47 +00:00
|
|
|
*/
|
2016-11-09 12:21:18 +00:00
|
|
|
private $stores = array(
|
2017-07-30 22:38:17 +00:00
|
|
|
'coupon' => 'WC_Coupon_Data_Store_CPT',
|
|
|
|
'customer' => 'WC_Customer_Data_Store',
|
|
|
|
'customer-download' => 'WC_Customer_Download_Data_Store',
|
|
|
|
'customer-download-log' => 'WC_Customer_Download_Log_Data_Store',
|
|
|
|
'customer-session' => 'WC_Customer_Data_Store_Session',
|
|
|
|
'order' => 'WC_Order_Data_Store_CPT',
|
|
|
|
'order-refund' => 'WC_Order_Refund_Data_Store_CPT',
|
|
|
|
'order-item' => 'WC_Order_Item_Data_Store',
|
|
|
|
'order-item-coupon' => 'WC_Order_Item_Coupon_Data_Store',
|
|
|
|
'order-item-fee' => 'WC_Order_Item_Fee_Data_Store',
|
|
|
|
'order-item-product' => 'WC_Order_Item_Product_Data_Store',
|
|
|
|
'order-item-shipping' => 'WC_Order_Item_Shipping_Data_Store',
|
|
|
|
'order-item-tax' => 'WC_Order_Item_Tax_Data_Store',
|
|
|
|
'payment-token' => 'WC_Payment_Token_Data_Store',
|
|
|
|
'product' => 'WC_Product_Data_Store_CPT',
|
|
|
|
'product-grouped' => 'WC_Product_Grouped_Data_Store_CPT',
|
|
|
|
'product-variable' => 'WC_Product_Variable_Data_Store_CPT',
|
|
|
|
'product-variation' => 'WC_Product_Variation_Data_Store_CPT',
|
|
|
|
'shipping-zone' => 'WC_Shipping_Zone_Data_Store',
|
2017-11-16 14:20:22 +00:00
|
|
|
'webhook' => 'WC_Webhook_Data_Store',
|
2016-11-09 12:21:18 +00:00
|
|
|
);
|
WIP - Product CRUD (#12065)
* Created function to get the catalog visibility options
* First methods for WP_Product crud
* Product set methods
* Fixed several erros while setting data
* First methods for WP_Product crud
* Product set methods
* Fixed several erros while setting data
* Hardcode the get_type per product class
* Initial look through getters and setters and abstract data
* Missing var
* Add related product functions and deprecate those in class.
* No need to exclude ID
* Fixed coding standards and improved the docblocks
* Get cached terms from wc_get_related_terms()
* Fixed wrong variable in wc_get_related_terms
* Use count() instead of sizeof()
* Sanitize ids later
* Remove unneeded comments
* wc_get_product_term_ids instead of related wording and use in other places.
get_the_terms is used here and also handles caching, something
wp_get_post_terms does not.
* Clean up the abstract product class a bit, deprecate two functions we have renamed, make update & create work properly, and add some tests for it.
* Bump template version
* Handle PR feedback: Remove duplicate regular_price update, allow changing of post status for products, remove deprecation for get_title since we might still offer it as a function
* Made abstract function useful
* External Product CRUD
* _virtual meta should be 'no', not taxable, in product unit test helper
* Grouped product class
* Tests
* Move children to meta and update test
* Use get_upsell_ids
* Spacing in query
* Moving and refactoring methods
* Availability html
* Tidy/add todos
* Rename method
* Put back review functions (still todo)
* missing $this
* get_price_including_tax/excluding_tax functions
* wc_get_price_to_display
* Price handling
* [Product CRUD] Variable (#12146)
* [Product CRUD] Variable Products
* Handle PR feedback.
* [Product CRUD] Grouped Handling (#12151)
* Handle grouped product saving
* Update routine
* [Product CRUD] Product crud terms (#12149)
* Category and tag id handling
* Replace template functions
* Remove todo
* Handle default name in save function
* Product crud admin save routine (#12174)
* Initial props
* Work on admin saving
* Set/get attributes
* Atom was moaning about this before but no longer.
* Update get_shipping_class
* WC_Product_Attribute
* Use getter in admin panel
* Fix attribute saving
* Spacing
* Fix comment
* wc_implode_text_attributes helper function
* [Product CRUD] Product crud admin use getters (#12196)
* Initial props
* Work on admin saving
* Set/get attributes
* Atom was moaning about this before but no longer.
* Update get_shipping_class
* WC_Product_Attribute
* Use getter in admin panel
* Fix attribute saving
* Move settings into new files
* Refactor panels and use getters
* Use getters for variation panel
* Revert save variation changes for now
* Add todos
* Fix downloads
* REST API CRUD Updates
* Additional API updates/fixes. Added some todos
* Fix final failing tests and implementing setters/getters and attributes functionality.
* Fix comparison for is_on_sale and remove download_type from WC_Product.
* Add a wc_get_products wrapper.
* Remove the download type input from the product data metabox for downloadable products. (#12221)
* [Product CRUD] Variations - setters, getters and admin. (#12228)
* Started on variation changes
* Stock functions
* Variation class
* Bulk change ->id to get_id() to fix variation form display
* Missing status
* Fix add to cart
* Start on stored data save
* save variation
* Save_variations
* Variation edit panel
* Save variations code works.
* Remove stored data code and fix save
* Improve legacy class
* wc_bool_to_string
* prepare_set_attributes
* Use wc_get_products
* More feedback fixes
* Feedback fixes
* Implement CRUD in the legacy REST API
* Handle PR feedback
* [Product CRUD] Getter setter proxy methods (#12236)
* Started on variation changes
* Stock functions
* Variation class
* Bulk change ->id to get_id() to fix variation form display
* Missing status
* Fix add to cart
* Start on stored data save
* save variation
* Save_variations
* Variation edit panel
* Save variations code works.
* Remove stored data code and fix save
* Improve legacy class
* wc_bool_to_string
* prepare_set_attributes
* Use wc_get_products
* More feedback fixes
* get_prop implementation in abstract and data classes
* Implement set_prop
* Change handling
* Array key exists
* set_object_read
* Use get_the_terms() instead of wp_get_post_terms()
wp_get_post_terms() is a wrapper around wp_get_object_terms() which does not
use the object cache, and generates a database query every time it is used.
get_the_terms() however can use data from the object cache if present.
* Allow WP_Query to preload post data, and meta in wc_get_products()
Allow WP_Query to bulk query for post data and meta if more than
just IDs are requested from wc_get_products(). Reduces query count
significantly.
* [Product CRUD] Variable, variation, notices, and stock handling (#12277)
* No longer needed
* Remove old todos
* Use getters in admin list
* Related and upsells update for CRUD
* Fix notice in gallery
* Variable fixes and todos
* Context
* Price sync
* Revert variation attributes change
* Return parent data in view context
* Defer term counting
* wc_find_matching_product_variation
* Stock manage tweaks
* Stock fixes
* Correct id
* correct id
* Better sync
* Data logic setter fix
* feedback
* First methods for WP_Product crud
* Product set methods
* Fixed several erros while setting data
* Hardcode the get_type per product class
* Initial look through getters and setters and abstract data
* Missing var
* Fixed coding standards and improved the docblocks
* Get cached terms from wc_get_related_terms()
* Fixed wrong variable in wc_get_related_terms
* Use count() instead of sizeof()
* Add related product functions and deprecate those in class.
* No need to exclude ID
* Sanitize ids later
* Clean up the abstract product class a bit, deprecate two functions we have renamed, make update & create work properly, and add some tests for it.
* Remove unneeded comments
* wc_get_product_term_ids instead of related wording and use in other places.
get_the_terms is used here and also handles caching, something
wp_get_post_terms does not.
* Handle PR feedback: Remove duplicate regular_price update, allow changing of post status for products, remove deprecation for get_title since we might still offer it as a function
* External Product CRUD
* _virtual meta should be 'no', not taxable, in product unit test helper
* Bump template version
* Made abstract function useful
* Grouped product class
* Tests
* Move children to meta and update test
* Use get_upsell_ids
* Spacing in query
* Moving and refactoring methods
* Availability html
* Tidy/add todos
* Rename method
* Put back review functions (still todo)
* missing $this
* get_price_including_tax/excluding_tax functions
* wc_get_price_to_display
* Price handling
* [Product CRUD] Variable (#12146)
* [Product CRUD] Variable Products
* Handle PR feedback.
* [Product CRUD] Grouped Handling (#12151)
* Handle grouped product saving
* Update routine
* [Product CRUD] Product crud terms (#12149)
* Category and tag id handling
* Replace template functions
* Remove todo
* Handle default name in save function
* Product crud admin save routine (#12174)
* Initial props
* Work on admin saving
* Set/get attributes
* Atom was moaning about this before but no longer.
* Update get_shipping_class
* WC_Product_Attribute
* Use getter in admin panel
* Fix attribute saving
* Spacing
* Fix comment
* wc_implode_text_attributes helper function
* [Product CRUD] Product crud admin use getters (#12196)
* Initial props
* Work on admin saving
* Set/get attributes
* Atom was moaning about this before but no longer.
* Update get_shipping_class
* WC_Product_Attribute
* Use getter in admin panel
* Fix attribute saving
* Move settings into new files
* Refactor panels and use getters
* Use getters for variation panel
* Revert save variation changes for now
* Add todos
* Fix downloads
* REST API CRUD Updates
* Additional API updates/fixes. Added some todos
* Fix final failing tests and implementing setters/getters and attributes functionality.
* Fix comparison for is_on_sale and remove download_type from WC_Product.
* Add a wc_get_products wrapper.
* Remove the download type input from the product data metabox for downloadable products. (#12221)
* [Product CRUD] Variations - setters, getters and admin. (#12228)
* Started on variation changes
* Stock functions
* Variation class
* Bulk change ->id to get_id() to fix variation form display
* Missing status
* Fix add to cart
* Start on stored data save
* save variation
* Save_variations
* Variation edit panel
* Save variations code works.
* Remove stored data code and fix save
* Improve legacy class
* wc_bool_to_string
* prepare_set_attributes
* Use wc_get_products
* More feedback fixes
* Feedback fixes
* Implement CRUD in the legacy REST API
* Handle PR feedback
* [Product CRUD] Getter setter proxy methods (#12236)
* Started on variation changes
* Stock functions
* Variation class
* Bulk change ->id to get_id() to fix variation form display
* Missing status
* Fix add to cart
* Start on stored data save
* save variation
* Save_variations
* Variation edit panel
* Save variations code works.
* Remove stored data code and fix save
* Improve legacy class
* wc_bool_to_string
* prepare_set_attributes
* Use wc_get_products
* More feedback fixes
* get_prop implementation in abstract and data classes
* Implement set_prop
* Change handling
* Array key exists
* set_object_read
* Use get_the_terms() instead of wp_get_post_terms()
wp_get_post_terms() is a wrapper around wp_get_object_terms() which does not
use the object cache, and generates a database query every time it is used.
get_the_terms() however can use data from the object cache if present.
* [Product CRUD] Variable, variation, notices, and stock handling (#12277)
* No longer needed
* Remove old todos
* Use getters in admin list
* Related and upsells update for CRUD
* Fix notice in gallery
* Variable fixes and todos
* Context
* Price sync
* Revert variation attributes change
* Return parent data in view context
* Defer term counting
* wc_find_matching_product_variation
* Stock manage tweaks
* Stock fixes
* Correct id
* correct id
* Better sync
* Data logic setter fix
* feedback
* Prevent notices
* Handle image_id from parent
* Fix error
* Remove _wc_save_product_price
* Remove todo
* Fixed wrong variation URLs
* Fixed undefined $image_id in WC_Product_Variation::get_image_id()
* Allow wc_rest_prepare_date_response() handle timestamps
* Updated get methods on REST API for variations
* Use variations CRUD to save variations metadata
* [Product CRUD] Abstract todos (#12305)
* Get dimensions and weights, with soft deprecation
* Product attributes
* Ratings
* Fix read method
* Downloads
* Feedback
* Revert "[Product CRUD] Abstract todos (#12305)"
This reverts commit 9a6136fcf88fec16f97457b7c8a4388f7587bfa2.
* Remove deprecated get_variation_id()
* New default attributes method
* [Product CRUD] Product Datastore (#12317)
* Fix up tests in the product/* folder.
* Handle data store updates for grouped, variable, external, simple, and general data store updates for products.
* Variations & variable changes.
* Update -functions.php calls to use data store.
* Add an interface for the public product data store methods.
* Finished product factory tests
* Correctly delete in the api, fix up some comments, and implement an interface for the public variable methods.
* Fix up delete in all versions of the api
* Handle feedback
* Match protected decloration to parent
* Product crud abstract todos (#12316)
* Get dimensions and weights, with soft deprecation
* Product attributes
* Ratings
* Fix read method
* Downloads
* Feedback
* Fix up store
* Fixed method returning in write context
* Fix error in variation admin
* Check for parent value - fixes tax class
* Remove old/complete todos
* Allow set tax class as "parent"
* Removed duplicated sync
* Fixed wrong variation URLs
* Fixed undefined $image_id in WC_Product_Variation::get_image_id()
* Allow wc_rest_prepare_date_response() handle timestamps
* Updated get methods on REST API for variations
* Use variations CRUD to save variations metadata
* Remove deprecated get_variation_id()
* New default attributes method
* Fixed method returning in write context
* Allow set tax class as "parent"
* Removed duplicated sync
* Fixed coding standards
* TODO is not accurate.
* Should pass WC_Product instancies to WC_Comments methods (#12327)
* Use new method in abstract order class to prevent headers sent issue in tests
* Fixed variable description in REST API
* Updated how create initial product variation
* Fixed a few fatal errors and warnings in Products CRUD (#12329)
* Fixed a few fatal errors and warnings in Products CRUD
* Fixed sync functions
* Add variations CRUD to legacy API (#12331)
* Apply crud to variable products in legacy API v1
* New REST API do not need fallback for default attributes
* Apply variations CRUD to legacy API v2
* Legacy v2 - save default attributes
* Variations in legacy API v2 do not have descriptions
* Fixed legacy API v2 variations params
* Applied variations CRUD to legacy API v3
* Sync before save in legacy apis
* Punc
* Removed API todos
* Removed test
* Products endpoint tweaks (#12354)
* Var type already normalized on CRUD
* Let Product CRUD handle with validation, sanitization and conditional checks
* Set downloads using WC_Product_Download
* Stop try catch exceptions more than one time
* Handle WC_Data_Exception in legacy API
* Complete remove products when fails on creating
* On creating I mean!
* Already have a method to complete delete products
* Fixed standards using WP CodeSniffer
* get_the_terms() returns false when empty
* get_manage_stock returns boolean
@claudiosanches
* Merge conflict
* Variations API endpoint fixes
* Product CRUD improvements (#12359)
* args is not used any more - remove todo
* Added test for attributes
* wc_get_price_excluding_tax usage
* parent usage
* Fix rating counts
* Test fixes
* Cleanup after tests
* Make sure status transition code runs even during API calls, not just in admin.
* Default visibility
* Fix attribute setting in API
* Use get name instead of get title
* variation id usage
* Improved cross sell templates
* variation_data
* Grouped product sync
* Notices
* Sync is not needed in API
* Delete
* Rename interfaces
* Update counts in data store
2016-11-16 12:38:24 +00:00
|
|
|
|
2016-11-08 09:39:47 +00:00
|
|
|
/**
|
|
|
|
* Contains the name of the current data store's class name.
|
2018-03-19 23:21:10 +00:00
|
|
|
*
|
|
|
|
* @var string
|
2016-11-08 09:39:47 +00:00
|
|
|
*/
|
|
|
|
private $current_class_name = '';
|
|
|
|
|
2017-03-16 21:23:06 +00:00
|
|
|
/**
|
|
|
|
* The object type this store works with.
|
2018-03-19 23:21:10 +00:00
|
|
|
*
|
2017-03-16 21:23:06 +00:00
|
|
|
* @var string
|
|
|
|
*/
|
|
|
|
private $object_type = '';
|
|
|
|
|
|
|
|
|
2016-11-08 09:39:47 +00:00
|
|
|
/**
|
|
|
|
* Tells WC_Data_Store which object (coupon, product, order, etc)
|
|
|
|
* store we want to work with.
|
|
|
|
*
|
2018-03-19 23:21:10 +00:00
|
|
|
* @throws Exception When validation fails.
|
2016-11-08 09:39:47 +00:00
|
|
|
* @param string $object_type Name of object.
|
|
|
|
*/
|
|
|
|
public function __construct( $object_type ) {
|
2017-03-16 21:23:06 +00:00
|
|
|
$this->object_type = $object_type;
|
2018-03-19 23:21:10 +00:00
|
|
|
$this->stores = apply_filters( 'woocommerce_data_stores', $this->stores );
|
2016-11-08 09:39:47 +00:00
|
|
|
|
|
|
|
// If this object type can't be found, check to see if we can load one
|
2016-11-22 13:54:51 +00:00
|
|
|
// level up (so if product-type isn't found, we try product).
|
2016-11-08 09:39:47 +00:00
|
|
|
if ( ! array_key_exists( $object_type, $this->stores ) ) {
|
2018-03-19 23:21:10 +00:00
|
|
|
$pieces = explode( '-', $object_type );
|
2016-11-08 09:39:47 +00:00
|
|
|
$object_type = $pieces[0];
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( array_key_exists( $object_type, $this->stores ) ) {
|
|
|
|
$store = apply_filters( 'woocommerce_' . $object_type . '_data_store', $this->stores[ $object_type ] );
|
2017-02-28 20:01:06 +00:00
|
|
|
if ( is_object( $store ) ) {
|
2017-03-01 16:58:03 +00:00
|
|
|
if ( ! $store instanceof WC_Object_Data_Store_Interface ) {
|
2017-02-28 20:01:06 +00:00
|
|
|
throw new Exception( __( 'Invalid data store.', 'woocommerce' ) );
|
|
|
|
}
|
|
|
|
$this->current_class_name = get_class( $store );
|
2018-03-19 23:21:10 +00:00
|
|
|
$this->instance = $store;
|
2017-02-28 20:01:06 +00:00
|
|
|
} else {
|
|
|
|
if ( ! class_exists( $store ) ) {
|
|
|
|
throw new Exception( __( 'Invalid data store.', 'woocommerce' ) );
|
|
|
|
}
|
|
|
|
$this->current_class_name = $store;
|
2018-03-19 23:21:10 +00:00
|
|
|
$this->instance = new $store();
|
2016-11-08 09:39:47 +00:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
throw new Exception( __( 'Invalid data store.', 'woocommerce' ) );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-03-16 21:23:06 +00:00
|
|
|
/**
|
2017-03-17 15:52:02 +00:00
|
|
|
* Only store the object type to avoid serializing the data store instance.
|
2017-03-16 21:23:06 +00:00
|
|
|
*
|
|
|
|
* @return array
|
|
|
|
*/
|
|
|
|
public function __sleep() {
|
2017-03-16 21:38:18 +00:00
|
|
|
return array( 'object_type' );
|
2017-03-16 21:23:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2017-03-17 15:52:02 +00:00
|
|
|
* Re-run the constructor with the object type.
|
2017-03-16 21:23:06 +00:00
|
|
|
*/
|
|
|
|
public function __wakeup() {
|
|
|
|
$this->__construct( $this->object_type );
|
|
|
|
}
|
|
|
|
|
2016-11-08 09:39:47 +00:00
|
|
|
/**
|
2017-03-01 17:24:30 +00:00
|
|
|
* Loads a data store.
|
2016-11-08 09:39:47 +00:00
|
|
|
*
|
|
|
|
* @param string $object_type Name of object.
|
2017-05-12 08:48:46 +00:00
|
|
|
*
|
2017-03-15 16:36:53 +00:00
|
|
|
* @since 3.0.0
|
2017-05-12 08:48:46 +00:00
|
|
|
* @return WC_Data_Store
|
2016-11-08 09:39:47 +00:00
|
|
|
*/
|
|
|
|
public static function load( $object_type ) {
|
2017-03-01 17:24:30 +00:00
|
|
|
return new WC_Data_Store( $object_type );
|
2016-11-08 09:39:47 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns the class name of the current data store.
|
|
|
|
*
|
2017-03-15 16:36:53 +00:00
|
|
|
* @since 3.0.0
|
2016-11-08 09:39:47 +00:00
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
public function get_current_class_name() {
|
|
|
|
return $this->current_class_name;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Reads an object from the data store.
|
|
|
|
*
|
2017-03-15 16:36:53 +00:00
|
|
|
* @since 3.0.0
|
2018-03-19 23:21:10 +00:00
|
|
|
* @param WC_Data $data WooCommerce data instance.
|
2016-11-08 09:39:47 +00:00
|
|
|
*/
|
|
|
|
public function read( &$data ) {
|
|
|
|
$this->instance->read( $data );
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Create an object in the data store.
|
|
|
|
*
|
2017-03-15 16:36:53 +00:00
|
|
|
* @since 3.0.0
|
2018-03-19 23:21:10 +00:00
|
|
|
* @param WC_Data $data WooCommerce data instance.
|
2016-11-08 09:39:47 +00:00
|
|
|
*/
|
|
|
|
public function create( &$data ) {
|
|
|
|
$this->instance->create( $data );
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Update an object in the data store.
|
|
|
|
*
|
2017-03-15 16:36:53 +00:00
|
|
|
* @since 3.0.0
|
2018-03-19 23:21:10 +00:00
|
|
|
* @param WC_Data $data WooCommerce data instance.
|
2016-11-08 09:39:47 +00:00
|
|
|
*/
|
|
|
|
public function update( &$data ) {
|
|
|
|
$this->instance->update( $data );
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Delete an object from the data store.
|
|
|
|
*
|
2017-03-15 16:36:53 +00:00
|
|
|
* @since 3.0.0
|
2018-03-19 23:21:10 +00:00
|
|
|
* @param WC_Data $data WooCommerce data instance.
|
|
|
|
* @param array $args Array of args to pass to the delete method.
|
2016-11-08 09:39:47 +00:00
|
|
|
*/
|
2016-11-15 18:11:25 +00:00
|
|
|
public function delete( &$data, $args = array() ) {
|
|
|
|
$this->instance->delete( $data, $args );
|
2016-11-08 09:39:47 +00:00
|
|
|
}
|
|
|
|
|
2016-11-09 12:21:18 +00:00
|
|
|
/**
|
|
|
|
* Data stores can define additional functions (for example, coupons have
|
|
|
|
* some helper methods for increasing or decreasing usage). This passes
|
|
|
|
* through to the instance if that function exists.
|
|
|
|
*
|
2017-03-15 16:36:53 +00:00
|
|
|
* @since 3.0.0
|
2018-03-19 23:21:10 +00:00
|
|
|
* @param string $method Method.
|
|
|
|
* @param mixed $parameters Parameters.
|
2017-05-12 08:48:46 +00:00
|
|
|
* @return mixed
|
2016-11-09 12:21:18 +00:00
|
|
|
*/
|
|
|
|
public function __call( $method, $parameters ) {
|
|
|
|
if ( is_callable( array( $this->instance, $method ) ) ) {
|
|
|
|
$object = array_shift( $parameters );
|
|
|
|
return call_user_func_array( array( $this->instance, $method ), array_merge( array( &$object ), $parameters ) );
|
|
|
|
}
|
|
|
|
}
|
2016-11-08 09:39:47 +00:00
|
|
|
}
|