2013-09-12 13:41:02 +00:00
< ? php
/**
2015-11-03 13:53:50 +00:00
* WooCommerce Attribute Functions
2013-09-12 13:41:02 +00:00
*
2018-03-07 13:58:37 +00:00
* @ package WooCommerce / Functions
* @ version 2.1 . 0
2013-09-12 13:41:02 +00:00
*/
2018-03-07 13:58:37 +00:00
defined ( 'ABSPATH' ) || exit ;
2013-09-12 13:41:02 +00:00
2015-06-11 13:42:37 +00:00
/**
2015-11-03 13:31:20 +00:00
* Gets text attributes from a string .
2015-06-11 13:42:37 +00:00
*
* @ since 2.4
2018-03-07 13:58:37 +00:00
* @ param string $raw_attributes Raw attributes .
2015-06-11 13:42:37 +00:00
* @ return array
*/
function wc_get_text_attributes ( $raw_attributes ) {
2016-10-25 11:42:31 +00:00
return array_filter ( array_map ( 'trim' , explode ( WC_DELIMITER , html_entity_decode ( $raw_attributes , ENT_QUOTES , get_bloginfo ( 'charset' ) ) ) ), 'wc_get_text_attributes_filter_callback' );
}
/**
* See if an attribute is actually valid .
2018-03-07 13:58:37 +00:00
*
2017-03-15 16:36:53 +00:00
* @ since 3.0 . 0
2018-03-07 13:58:37 +00:00
* @ param string $value Value .
2016-10-25 11:42:31 +00:00
* @ return bool
*/
function wc_get_text_attributes_filter_callback ( $value ) {
return '' !== $value ;
2015-06-11 13:42:37 +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
/**
* Implode an array of attributes using WC_DELIMITER .
2018-03-07 13:58:37 +00:00
*
2017-03-15 16:36:53 +00:00
* @ since 3.0 . 0
2018-03-07 13:58:37 +00:00
* @ param array $attributes Attributes list .
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
* @ return string
*/
function wc_implode_text_attributes ( $attributes ) {
return implode ( ' ' . WC_DELIMITER . ' ' , $attributes );
}
2013-09-12 13:41:02 +00:00
/**
* Get attribute taxonomies .
*
2015-08-11 16:10:32 +00:00
* @ return array of objects
2013-09-12 13:41:02 +00:00
*/
function wc_get_attribute_taxonomies () {
2018-03-07 13:58:37 +00:00
$attribute_taxonomies = get_transient ( 'wc_attribute_taxonomies' );
if ( false === $attribute_taxonomies ) {
2013-09-12 13:41:02 +00:00
global $wpdb ;
2018-03-07 13:58:37 +00:00
$attribute_taxonomies = $wpdb -> get_results ( " SELECT * FROM { $wpdb -> prefix } woocommerce_attribute_taxonomies WHERE attribute_name != '' ORDER BY attribute_name ASC; " );
2013-09-12 13:41:02 +00:00
2015-11-13 23:06:51 +00:00
set_transient ( 'wc_attribute_taxonomies' , $attribute_taxonomies );
2013-09-12 13:41:02 +00:00
}
2015-08-11 16:10:32 +00:00
return ( array ) array_filter ( apply_filters ( 'woocommerce_attribute_taxonomies' , $attribute_taxonomies ) );
2013-09-12 13:41:02 +00:00
}
/**
2015-12-04 18:02:07 +00:00
* Get a product attribute name .
2013-09-12 13:41:02 +00:00
*
2015-12-04 18:02:07 +00:00
* @ param string $attribute_name Attribute name .
2013-09-12 13:41:02 +00:00
* @ return string
*/
2015-12-04 18:02:07 +00:00
function wc_attribute_taxonomy_name ( $attribute_name ) {
2017-06-09 11:14:11 +00:00
return $attribute_name ? 'pa_' . wc_sanitize_taxonomy_name ( $attribute_name ) : '' ;
2015-12-04 18:02:07 +00:00
}
2016-02-15 15:53:43 +00:00
/**
* Get the attribute name used when storing values in post meta .
*
* @ since 2.6 . 0
2017-05-04 06:48:05 +00:00
* @ param string $attribute_name Attribute name .
2016-02-15 15:53:43 +00:00
* @ return string
*/
function wc_variation_attribute_name ( $attribute_name ) {
return 'attribute_' . sanitize_title ( $attribute_name );
}
2015-12-04 18:02:07 +00:00
/**
* Get a product attribute name by ID .
*
* @ since 2.4 . 0
* @ param int $attribute_id Attribute ID .
* @ return string Return an empty string if attribute doesn ' t exist .
*/
function wc_attribute_taxonomy_name_by_id ( $attribute_id ) {
global $wpdb ;
2018-03-07 13:58:37 +00:00
$attribute_name = $wpdb -> get_var (
$wpdb -> prepare (
"
2015-12-04 18:02:07 +00:00
SELECT attribute_name
FROM { $wpdb -> prefix } woocommerce_attribute_taxonomies
WHERE attribute_id = % d
2018-03-07 13:58:37 +00:00
" , $attribute_id
)
);
2015-12-04 18:02:07 +00:00
if ( $attribute_name && ! is_wp_error ( $attribute_name ) ) {
return wc_attribute_taxonomy_name ( $attribute_name );
}
return '' ;
2013-09-12 13:41:02 +00:00
}
2016-06-02 20:34:26 +00:00
/**
* Get a product attribute ID by name .
*
* @ since 2.6 . 0
* @ param string $name Attribute name .
* @ return int
*/
function wc_attribute_taxonomy_id_by_name ( $name ) {
2017-05-08 14:01:04 +00:00
$name = str_replace ( 'pa_' , '' , wc_sanitize_taxonomy_name ( $name ) );
2016-06-02 20:34:26 +00:00
$taxonomies = wp_list_pluck ( wc_get_attribute_taxonomies (), 'attribute_id' , 'attribute_name' );
return isset ( $taxonomies [ $name ] ) ? ( int ) $taxonomies [ $name ] : 0 ;
}
2013-09-12 13:41:02 +00:00
/**
* Get a product attributes label .
*
2018-03-07 13:58:37 +00:00
* @ param string $name Attribute name .
* @ param WC_Product $product Product data .
2013-09-12 13:41:02 +00:00
* @ return string
*/
2015-03-09 13:40:07 +00:00
function wc_attribute_label ( $name , $product = '' ) {
2013-09-12 13:41:02 +00:00
if ( taxonomy_is_product_attribute ( $name ) ) {
2016-08-25 16:34:18 +00:00
$name = wc_sanitize_taxonomy_name ( str_replace ( 'pa_' , '' , $name ) );
$all_labels = wp_list_pluck ( wc_get_attribute_taxonomies (), 'attribute_label' , 'attribute_name' );
$label = isset ( $all_labels [ $name ] ) ? $all_labels [ $name ] : $name ;
2016-11-24 14:20:48 +00:00
} elseif ( $product ) {
if ( $product -> is_type ( 'variation' ) ) {
$product = wc_get_product ( $product -> get_parent_id () );
}
2018-03-08 21:41:39 +00:00
$attributes = array ();
if ( false !== $product ) {
$attributes = $product -> get_attributes ();
}
2018-03-07 13:58:37 +00:00
2016-11-24 14:20:48 +00:00
// Attempt to get label from product, as entered by the user.
2018-03-08 21:41:39 +00:00
if ( $attributes && isset ( $attributes [ sanitize_title ( $name ) ] ) ) {
2016-11-24 14:20:48 +00:00
$label = $attributes [ sanitize_title ( $name ) ] -> get_name ();
} else {
$label = $name ;
}
2013-09-12 13:41:02 +00:00
} else {
2016-09-06 09:40:08 +00:00
$label = $name ;
2013-09-12 13:41:02 +00:00
}
2015-03-09 13:40:07 +00:00
return apply_filters ( 'woocommerce_attribute_label' , $label , $name , $product );
2013-09-12 13:41:02 +00:00
}
/**
* Get a product attributes orderby setting .
*
2018-03-07 13:58:37 +00:00
* @ param string $name Attribute name .
2013-09-12 13:41:02 +00:00
* @ return string
*/
function wc_attribute_orderby ( $name ) {
2016-02-10 11:07:42 +00:00
global $wc_product_attributes , $wpdb ;
2013-09-12 13:41:02 +00:00
$name = str_replace ( 'pa_' , '' , sanitize_title ( $name ) );
2016-02-10 11:07:42 +00:00
if ( isset ( $wc_product_attributes [ 'pa_' . $name ] ) ) {
$orderby = $wc_product_attributes [ 'pa_' . $name ] -> attribute_orderby ;
} else {
2018-03-07 13:58:37 +00:00
$orderby = $wpdb -> get_var ( $wpdb -> prepare ( " SELECT attribute_orderby FROM { $wpdb -> prefix } woocommerce_attribute_taxonomies WHERE attribute_name = %s; " , $name ) );
2016-02-10 11:07:42 +00:00
}
2013-09-12 13:41:02 +00:00
return apply_filters ( 'woocommerce_attribute_orderby' , $orderby , $name );
}
/**
* Get an array of product attribute taxonomies .
*
* @ return array
*/
function wc_get_attribute_taxonomy_names () {
2018-03-07 13:58:37 +00:00
$taxonomy_names = array ();
2013-09-12 13:41:02 +00:00
$attribute_taxonomies = wc_get_attribute_taxonomies ();
2016-06-06 16:24:31 +00:00
if ( ! empty ( $attribute_taxonomies ) ) {
2013-09-12 13:41:02 +00:00
foreach ( $attribute_taxonomies as $tax ) {
$taxonomy_names [] = wc_attribute_taxonomy_name ( $tax -> attribute_name );
}
}
return $taxonomy_names ;
2014-03-07 08:29:01 +00:00
}
2015-04-27 15:31:34 +00:00
/**
* Get attribute types .
*
* @ since 2.4 . 0
* @ return array
*/
function wc_get_attribute_types () {
2018-03-07 13:58:37 +00:00
return ( array ) apply_filters (
'product_attributes_type_selector' , array (
'select' => __ ( 'Select' , 'woocommerce' ),
)
);
2015-04-27 15:31:34 +00:00
}
2015-04-27 16:06:28 +00:00
2018-02-09 22:31:56 +00:00
/**
* Check if there are custom attribute types .
*
* @ since 3.3 . 2
* @ return bool True if there are custom types , otherwise false .
*/
function wc_has_custom_attribute_types () {
$types = wc_get_attribute_types ();
return 1 < count ( $types ) || ! array_key_exists ( 'select' , $types );
}
2017-03-29 20:50:09 +00:00
/**
* Get attribute type label .
*
* @ since 3.0 . 0
* @ param string $type Attribute type slug .
* @ return string
*/
function wc_get_attribute_type_label ( $type ) {
$types = wc_get_attribute_types ();
2017-12-08 11:24:21 +00:00
return isset ( $types [ $type ] ) ? $types [ $type ] : __ ( 'Select' , 'woocommerce' );
2017-03-29 20:50:09 +00:00
}
2015-04-27 16:06:28 +00:00
/**
2015-11-03 13:31:20 +00:00
* Check if attribute name is reserved .
2016-05-27 01:48:49 +00:00
* https :// codex . wordpress . org / Function_Reference / register_taxonomy #Reserved_Terms.
2015-04-27 16:06:28 +00:00
*
* @ since 2.4 . 0
2018-03-07 13:58:37 +00:00
* @ param string $attribute_name Attribute name .
2015-04-27 16:06:28 +00:00
* @ return bool
*/
function wc_check_if_attribute_name_is_reserved ( $attribute_name ) {
2018-03-07 13:58:37 +00:00
// Forbidden attribute names.
2015-04-27 16:06:28 +00:00
$reserved_terms = array (
2016-08-27 03:04:10 +00:00
'attachment' ,
'attachment_id' ,
'author' ,
'author_name' ,
'calendar' ,
'cat' ,
'category' ,
'category__and' ,
'category__in' ,
'category__not_in' ,
'category_name' ,
'comments_per_page' ,
'comments_popup' ,
'cpage' ,
'day' ,
'debug' ,
'error' ,
'exact' ,
'feed' ,
'hour' ,
'link_category' ,
'm' ,
'minute' ,
'monthnum' ,
'more' ,
'name' ,
'nav_menu' ,
'nopaging' ,
'offset' ,
'order' ,
'orderby' ,
'p' ,
'page' ,
'page_id' ,
'paged' ,
'pagename' ,
'pb' ,
'perm' ,
'post' ,
'post__in' ,
'post__not_in' ,
'post_format' ,
'post_mime_type' ,
'post_status' ,
'post_tag' ,
'post_type' ,
'posts' ,
'posts_per_archive_page' ,
'posts_per_page' ,
'preview' ,
'robots' ,
's' ,
'search' ,
'second' ,
'sentence' ,
'showposts' ,
'static' ,
'subpost' ,
'subpost_id' ,
'tag' ,
'tag__and' ,
'tag__in' ,
'tag__not_in' ,
'tag_id' ,
'tag_slug__and' ,
'tag_slug__in' ,
'taxonomy' ,
'tb' ,
'term' ,
'type' ,
'w' ,
'withcomments' ,
'withoutcomments' ,
'year' ,
2015-04-27 16:06:28 +00:00
);
2018-03-07 13:58:37 +00:00
return in_array ( $attribute_name , $reserved_terms , true );
2015-04-27 16:06:28 +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
/**
* Callback for array filter to get visible only .
*
2017-03-15 16:36:53 +00:00
* @ since 3.0 . 0
2018-03-07 13:58:37 +00:00
* @ param WC_Product_Attribute $attribute Attribute data .
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
* @ return bool
*/
function wc_attributes_array_filter_visible ( $attribute ) {
return $attribute && is_a ( $attribute , 'WC_Product_Attribute' ) && $attribute -> get_visible () && ( ! $attribute -> is_taxonomy () || taxonomy_exists ( $attribute -> get_name () ) );
}
2016-11-24 14:20:48 +00:00
/**
* Callback for array filter to get variation attributes only .
*
2017-03-15 16:36:53 +00:00
* @ since 3.0 . 0
2018-03-07 13:58:37 +00:00
* @ param WC_Product_Attribute $attribute Attribute data .
2016-11-24 14:20:48 +00:00
* @ return bool
*/
function wc_attributes_array_filter_variation ( $attribute ) {
return $attribute && is_a ( $attribute , 'WC_Product_Attribute' ) && $attribute -> get_variation ();
}
2017-04-10 21:35:16 +00:00
/**
2017-04-11 20:12:30 +00:00
* Check if an attribute is included in the attributes area of a variation name .
2017-04-10 21:35:16 +00:00
*
* @ since 3.0 . 2
2018-03-07 13:58:37 +00:00
* @ param string $attribute Attribute value to check for .
* @ param string $name Product name to check in .
2017-04-10 21:35:16 +00:00
* @ return bool
*/
function wc_is_attribute_in_product_name ( $attribute , $name ) {
2017-04-20 06:53:49 +00:00
$is_in_name = stristr ( $name , ' ' . $attribute . ',' ) || 0 === stripos ( strrev ( $name ), strrev ( ' ' . $attribute ) );
2017-04-20 14:07:06 +00:00
return apply_filters ( 'woocommerce_is_attribute_in_product_name' , $is_in_name , $attribute , $name );
2017-04-10 21:35:16 +00:00
}
Fix bug #15103 where site operator cannot assign a variation with value of '0' as the default choice on the customer facing form.
The WC_Product::set_default_attributes function uses an array_filter (using the default callback for filtration)
to remove null and false values from the defaults array for a given product. The issue here is that, in the above use case,
the array_filter will evaluate '0' as 0 and therefore as false. Ultimately, array_filter then prevents the value from being
recorded, moving forward.
I've added a new filter callback to includes/wc-attribute-functions which will disregard all FALSE PHP equivalents except for
'0' (as a a string). Also, I've updated the filter_array call in WC_Product::set_default_attributes so that it uses this new callback,
instead of the PHP default. Finally, I've added a phpunit test to assert that, when storing default variations / attributes on a product,
the false/true PHP synonyms are evaluating and storing like one would normally expect, with the exception that (string) '0'
evaluates as true in this special case.
This solution could potentially be broadened to facililate similar rules elsewhere, but the need raised in the bug is specific and
this is a specific solution.
2017-05-18 09:43:14 +00:00
/**
* Callback for array filter to get default attributes . Will allow for '0' string values , but regard all other
* class PHP FALSE equivalents normally .
*
* @ since 3.1 . 0
2018-03-07 13:58:37 +00:00
* @ param mixed $attribute Attribute being considered for exclusion from parent array .
Fix bug #15103 where site operator cannot assign a variation with value of '0' as the default choice on the customer facing form.
The WC_Product::set_default_attributes function uses an array_filter (using the default callback for filtration)
to remove null and false values from the defaults array for a given product. The issue here is that, in the above use case,
the array_filter will evaluate '0' as 0 and therefore as false. Ultimately, array_filter then prevents the value from being
recorded, moving forward.
I've added a new filter callback to includes/wc-attribute-functions which will disregard all FALSE PHP equivalents except for
'0' (as a a string). Also, I've updated the filter_array call in WC_Product::set_default_attributes so that it uses this new callback,
instead of the PHP default. Finally, I've added a phpunit test to assert that, when storing default variations / attributes on a product,
the false/true PHP synonyms are evaluating and storing like one would normally expect, with the exception that (string) '0'
evaluates as true in this special case.
This solution could potentially be broadened to facililate similar rules elsewhere, but the need raised in the bug is specific and
this is a specific solution.
2017-05-18 09:43:14 +00:00
* @ return bool
*/
function wc_array_filter_default_attributes ( $attribute ) {
2017-06-27 21:19:59 +00:00
return ( ! empty ( $attribute ) || '0' === $attribute );
Fix bug #15103 where site operator cannot assign a variation with value of '0' as the default choice on the customer facing form.
The WC_Product::set_default_attributes function uses an array_filter (using the default callback for filtration)
to remove null and false values from the defaults array for a given product. The issue here is that, in the above use case,
the array_filter will evaluate '0' as 0 and therefore as false. Ultimately, array_filter then prevents the value from being
recorded, moving forward.
I've added a new filter callback to includes/wc-attribute-functions which will disregard all FALSE PHP equivalents except for
'0' (as a a string). Also, I've updated the filter_array call in WC_Product::set_default_attributes so that it uses this new callback,
instead of the PHP default. Finally, I've added a phpunit test to assert that, when storing default variations / attributes on a product,
the false/true PHP synonyms are evaluating and storing like one would normally expect, with the exception that (string) '0'
evaluates as true in this special case.
This solution could potentially be broadened to facililate similar rules elsewhere, but the need raised in the bug is specific and
this is a specific solution.
2017-05-18 09:43:14 +00:00
}
2017-07-07 20:40:19 +00:00
/**
* Get attribute data by ID .
*
* @ since 3.2 . 0
* @ param int $id Attribute ID .
* @ return stdClass | null
*/
function wc_get_attribute ( $id ) {
global $wpdb ;
2018-03-07 13:58:37 +00:00
$data = $wpdb -> get_row (
$wpdb -> prepare (
"
2017-07-07 20:40:19 +00:00
SELECT *
FROM { $wpdb -> prefix } woocommerce_attribute_taxonomies
WHERE attribute_id = % d
2018-03-07 13:58:37 +00:00
" , $id
)
);
2017-07-07 20:40:19 +00:00
if ( is_wp_error ( $data ) || is_null ( $data ) ) {
return null ;
}
$attribute = new stdClass ();
$attribute -> id = ( int ) $data -> attribute_id ;
$attribute -> name = $data -> attribute_label ;
$attribute -> slug = wc_attribute_taxonomy_name ( $data -> attribute_name );
$attribute -> type = $data -> attribute_type ;
$attribute -> order_by = $data -> attribute_orderby ;
$attribute -> has_archives = ( bool ) $data -> attribute_public ;
return $attribute ;
}
2017-07-07 20:40:40 +00:00
/**
* Create attribute .
*
* @ since 3.2 . 0
2017-07-13 22:55:47 +00:00
* @ param array $args Attribute arguments {
* Array of attribute parameters .
*
* @ type int $id Unique identifier , used to update an attribute .
* @ type string $name Attribute name . Always required .
* @ type string $slug Attribute alphanumeric identifier .
* @ type string $type Type of attribute .
* Core by default accepts : 'select' and 'text' .
* Default to 'select' .
* @ type string $order_by Sort order .
* Accepts : 'menu_order' , 'name' , 'name_num' and 'id' .
* Default to 'menu_order' .
* @ type bool $has_archives Enable or disable attribute archives . False by default .
* }
2017-07-07 20:40:40 +00:00
* @ return int | WP_Error
*/
function wc_create_attribute ( $args ) {
global $wpdb ;
$args = wp_unslash ( $args );
$id = ! empty ( $args [ 'id' ] ) ? intval ( $args [ 'id' ] ) : 0 ;
$format = array ( '%s' , '%s' , '%s' , '%s' , '%d' );
// Name is required.
if ( empty ( $args [ 'name' ] ) ) {
2017-08-08 00:40:24 +00:00
return new WP_Error ( 'missing_attribute_name' , __ ( 'Please, provide an attribute name.' , 'woocommerce' ), array ( 'status' => 400 ) );
2017-07-07 20:40:40 +00:00
}
// Set the attribute slug.
if ( empty ( $args [ 'slug' ] ) ) {
$slug = wc_sanitize_taxonomy_name ( $args [ 'name' ] );
} else {
$slug = preg_replace ( '/^pa\_/' , '' , wc_sanitize_taxonomy_name ( $args [ 'slug' ] ) );
}
// Validate slug.
if ( strlen ( $slug ) >= 28 ) {
2018-03-07 13:58:37 +00:00
/* translators: %s: attribute slug */
2017-07-07 20:40:40 +00:00
return new WP_Error ( 'invalid_product_attribute_slug_too_long' , sprintf ( __ ( 'Slug "%s" is too long (28 characters max). Shorten it, please.' , 'woocommerce' ), $slug ), array ( 'status' => 400 ) );
} elseif ( wc_check_if_attribute_name_is_reserved ( $slug ) ) {
2018-03-07 13:58:37 +00:00
/* translators: %s: attribute slug */
2017-07-07 20:40:40 +00:00
return new WP_Error ( 'invalid_product_attribute_slug_reserved_name' , sprintf ( __ ( 'Slug "%s" is not allowed because it is a reserved term. Change it, please.' , 'woocommerce' ), $slug ), array ( 'status' => 400 ) );
2018-03-12 18:52:26 +00:00
} elseif ( ( 0 === $id && taxonomy_exists ( wc_attribute_taxonomy_name ( $slug ) ) ) || ( isset ( $args [ 'old_slug' ] ) && $args [ 'old_slug' ] !== $slug && taxonomy_exists ( wc_attribute_taxonomy_name ( $slug ) ) ) ) {
2018-03-07 13:58:37 +00:00
/* translators: %s: attribute slug */
2017-07-07 20:40:40 +00:00
return new WP_Error ( 'invalid_product_attribute_slug_already_exists' , sprintf ( __ ( 'Slug "%s" is already in use. Change it, please.' , 'woocommerce' ), $slug ), array ( 'status' => 400 ) );
}
// Validate type.
if ( empty ( $args [ 'type' ] ) || ! array_key_exists ( $args [ 'type' ], wc_get_attribute_types () ) ) {
$args [ 'type' ] = 'select' ;
}
// Validate order by.
if ( empty ( $args [ 'order_by' ] ) || ! in_array ( $args [ 'order_by' ], array ( 'menu_order' , 'name' , 'name_num' , 'id' ), true ) ) {
$args [ 'order_by' ] = 'menu_order' ;
}
$data = array (
'attribute_label' => $args [ 'name' ],
'attribute_name' => $slug ,
'attribute_type' => $args [ 'type' ],
'attribute_orderby' => $args [ 'order_by' ],
2017-08-08 00:40:24 +00:00
'attribute_public' => isset ( $args [ 'has_archives' ] ) ? ( int ) $args [ 'has_archives' ] : 0 ,
2017-07-07 20:40:40 +00:00
);
// Create or update.
if ( 0 === $id ) {
$results = $wpdb -> insert (
$wpdb -> prefix . 'woocommerce_attribute_taxonomies' ,
2017-07-07 20:52:13 +00:00
$data ,
2017-07-07 20:40:40 +00:00
$format
);
if ( is_wp_error ( $results ) ) {
return new WP_Error ( 'cannot_create_attribute' , $results -> get_error_message (), array ( 'status' => 400 ) );
}
$id = $wpdb -> insert_id ;
2017-08-08 00:40:24 +00:00
/**
* Attribute added .
*
* @ param int $id Added attribute ID .
* @ param array $data Attribute data .
*/
do_action ( 'woocommerce_attribute_added' , $id , $data );
2017-07-07 20:40:40 +00:00
} else {
$results = $wpdb -> update (
$wpdb -> prefix . 'woocommerce_attribute_taxonomies' ,
2017-07-07 20:52:13 +00:00
$data ,
2017-07-07 20:40:40 +00:00
array ( 'attribute_id' => $id ),
$format ,
array ( '%d' )
);
if ( false === $results ) {
return new WP_Error ( 'cannot_update_attribute' , __ ( 'Could not update the attribute.' , 'woocommerce' ), array ( 'status' => 400 ) );
}
2017-08-08 10:07:36 +00:00
// Set old_slug to check for database changes.
2017-08-08 00:40:24 +00:00
$args [ 'old_slug' ] = ! empty ( $args [ 'old_slug' ] ) ? $args [ 'old_slug' ] : $args [ 'slug' ];
/**
* Attribute updated .
*
* @ param int $id Added attribute ID .
* @ param array $data Attribute data .
* @ param string $old_slug Attribute old name .
*/
do_action ( 'woocommerce_attribute_updated' , $id , $data , $args [ 'old_slug' ] );
if ( $args [ 'old_slug' ] !== $args [ 'slug' ] ) {
// Update taxonomies in the wp term taxonomy table.
$wpdb -> update (
$wpdb -> term_taxonomy ,
array ( 'taxonomy' => wc_attribute_taxonomy_name ( $data [ 'attribute_name' ] ) ),
array ( 'taxonomy' => 'pa_' . $args [ 'old_slug' ] )
);
// Update taxonomy ordering term meta.
$table_name = get_option ( 'db_version' ) < 34370 ? $wpdb -> prefix . 'woocommerce_termmeta' : $wpdb -> termmeta ;
$wpdb -> update (
$table_name ,
2018-03-07 13:58:37 +00:00
array ( 'meta_key' => 'order_pa_' . sanitize_title ( $data [ 'attribute_name' ] ) ), // WPCS: slow query ok.
array ( 'meta_key' => 'order_pa_' . sanitize_title ( $args [ 'old_slug' ] ) ) // WPCS: slow query ok.
2017-08-08 00:40:24 +00:00
);
// Update product attributes which use this taxonomy.
$old_attribute_name_length = strlen ( $args [ 'old_slug' ] ) + 3 ;
$attribute_name_length = strlen ( $data [ 'attribute_name' ] ) + 3 ;
2018-03-07 13:58:37 +00:00
$wpdb -> query (
$wpdb -> prepare (
" UPDATE { $wpdb -> postmeta } SET meta_value = REPLACE( meta_value, %s, %s ) WHERE meta_key = '_product_attributes' " ,
's:' . $old_attribute_name_length . ':"pa_' . $args [ 'old_slug' ] . '"' ,
's:' . $attribute_name_length . ':"pa_' . $data [ 'attribute_name' ] . '"'
)
);
2017-08-08 00:40:24 +00:00
// Update variations which use this taxonomy.
$wpdb -> update (
$wpdb -> postmeta ,
2018-03-07 13:58:37 +00:00
array ( 'meta_key' => 'attribute_pa_' . sanitize_title ( $data [ 'attribute_name' ] ) ), // WPCS: slow query ok.
array ( 'meta_key' => 'attribute_pa_' . sanitize_title ( $args [ 'old_slug' ] ) ) // WPCS: slow query ok.
2017-08-08 00:40:24 +00:00
);
}
}
2017-07-13 23:15:44 +00:00
// Clear cache and flush rewrite rules.
wp_schedule_single_event ( time (), 'woocommerce_flush_rewrite_rules' );
2017-07-07 20:52:13 +00:00
delete_transient ( 'wc_attribute_taxonomies' );
2017-07-07 20:40:40 +00:00
return $id ;
}
/**
* Update an attribute .
*
* For available args see wc_create_attribute () .
*
* @ since 3.2 . 0
2018-03-07 13:58:37 +00:00
* @ param int $id Attribute ID .
2017-07-07 20:40:40 +00:00
* @ param array $args Attribute arguments .
2017-08-08 00:40:24 +00:00
* @ return int | WP_Error
2017-07-07 20:40:40 +00:00
*/
function wc_update_attribute ( $id , $args ) {
2017-08-08 00:40:24 +00:00
global $wpdb ;
2017-07-07 20:40:40 +00:00
$attribute = wc_get_attribute ( $id );
$args [ 'id' ] = $attribute ? $attribute -> id : 0 ;
if ( $args [ 'id' ] && empty ( $args [ 'name' ] ) ) {
$args [ 'name' ] = $attribute -> name ;
}
2018-03-07 13:58:37 +00:00
$args [ 'old_slug' ] = $wpdb -> get_var (
$wpdb -> prepare (
"
2017-08-08 00:40:24 +00:00
SELECT attribute_name
FROM { $wpdb -> prefix } woocommerce_attribute_taxonomies
WHERE attribute_id = % d
" , $args['id']
2018-03-07 13:58:37 +00:00
)
);
2017-08-08 00:40:24 +00:00
2017-07-07 20:40:40 +00:00
return wc_create_attribute ( $args );
}
2017-07-07 20:44:31 +00:00
/**
* Delete attribute by ID .
*
* @ since 3.2 . 0
* @ param int $id Attribute ID .
* @ return bool
*/
function wc_delete_attribute ( $id ) {
2017-07-07 21:15:59 +00:00
global $wpdb ;
2018-03-07 13:58:37 +00:00
$name = $wpdb -> get_var (
$wpdb -> prepare (
"
2017-08-08 00:40:24 +00:00
SELECT attribute_name
FROM { $wpdb -> prefix } woocommerce_attribute_taxonomies
WHERE attribute_id = % d
2018-03-07 13:58:37 +00:00
" , $id
)
);
2017-07-07 20:44:31 +00:00
2017-08-08 00:40:24 +00:00
$taxonomy = wc_attribute_taxonomy_name ( $name );
2017-07-07 20:44:31 +00:00
2017-08-08 00:40:24 +00:00
/**
2017-08-08 10:07:36 +00:00
* Before deleting an attribute .
2017-08-08 00:40:24 +00:00
*
* @ param int $id Attribute ID .
* @ param string $name Attribute name .
* @ param string $taxonomy Attribute taxonomy name .
*/
do_action ( 'woocommerce_before_attribute_delete' , $id , $name , $taxonomy );
2018-03-07 13:58:37 +00:00
if ( $name && $wpdb -> query ( $wpdb -> prepare ( " DELETE FROM { $wpdb -> prefix } woocommerce_attribute_taxonomies WHERE attribute_id = %d " , $id ) ) ) {
2017-08-08 00:40:24 +00:00
if ( taxonomy_exists ( $taxonomy ) ) {
$terms = get_terms ( $taxonomy , 'orderby=name&hide_empty=0' );
foreach ( $terms as $term ) {
wp_delete_term ( $term -> term_id , $taxonomy );
}
}
/**
2017-08-08 10:07:36 +00:00
* After deleting an attribute .
2017-08-08 00:40:24 +00:00
*
* @ param int $id Attribute ID .
* @ param string $name Attribute name .
* @ param string $taxonomy Attribute taxonomy name .
*/
do_action ( 'woocommerce_attribute_deleted' , $id , $name , $taxonomy );
2017-08-08 01:23:50 +00:00
wp_schedule_single_event ( time (), 'woocommerce_flush_rewrite_rules' );
2017-08-08 00:40:24 +00:00
delete_transient ( 'wc_attribute_taxonomies' );
return true ;
}
2017-07-07 20:52:13 +00:00
2017-08-08 00:40:24 +00:00
return false ;
2017-07-07 20:44:31 +00:00
}