2014-07-28 14:50:11 +00:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Admin View: Quick Edit Product
|
2018-05-08 15:58:51 +00:00
|
|
|
*
|
2020-08-05 16:51:37 +00:00
|
|
|
* @package WooCommerce\Admin\Notices
|
2014-07-28 14:50:11 +00:00
|
|
|
*/
|
|
|
|
|
2018-05-08 15:58:51 +00:00
|
|
|
defined( 'ABSPATH' ) || exit;
|
2014-07-28 14:50:11 +00:00
|
|
|
?>
|
|
|
|
|
2013-07-24 18:55:02 +00:00
|
|
|
<fieldset class="inline-edit-col-left">
|
|
|
|
<div id="woocommerce-fields" class="inline-edit-col">
|
|
|
|
|
2017-11-21 22:08:17 +00:00
|
|
|
<h4><?php esc_html_e( 'Product data', 'woocommerce' ); ?></h4>
|
2013-07-24 18:55:02 +00:00
|
|
|
|
2013-08-08 07:46:46 +00:00
|
|
|
<?php do_action( 'woocommerce_product_quick_edit_start' ); ?>
|
|
|
|
|
2013-08-22 10:58:03 +00:00
|
|
|
<?php if ( wc_product_sku_enabled() ) : ?>
|
2013-07-24 18:55:02 +00:00
|
|
|
|
|
|
|
<label>
|
2017-11-21 22:08:17 +00:00
|
|
|
<span class="title"><?php esc_html_e( 'SKU', 'woocommerce' ); ?></span>
|
2014-11-04 19:49:15 +00:00
|
|
|
<span class="input-text-wrap">
|
2013-07-24 18:55:02 +00:00
|
|
|
<input type="text" name="_sku" class="text sku" value="">
|
|
|
|
</span>
|
|
|
|
</label>
|
|
|
|
<br class="clear" />
|
|
|
|
|
|
|
|
<?php endif; ?>
|
|
|
|
|
|
|
|
<div class="price_fields">
|
|
|
|
<label>
|
2017-11-21 22:08:17 +00:00
|
|
|
<span class="title"><?php esc_html_e( 'Price', 'woocommerce' ); ?></span>
|
2014-11-04 19:49:15 +00:00
|
|
|
<span class="input-text-wrap">
|
2016-10-12 10:16:30 +00:00
|
|
|
<input type="text" name="_regular_price" class="text wc_input_price regular_price" placeholder="<?php esc_attr_e( 'Regular price', 'woocommerce' ); ?>" value="">
|
2013-07-24 18:55:02 +00:00
|
|
|
</span>
|
|
|
|
</label>
|
|
|
|
<br class="clear" />
|
|
|
|
<label>
|
2017-11-21 22:08:17 +00:00
|
|
|
<span class="title"><?php esc_html_e( 'Sale', 'woocommerce' ); ?></span>
|
2014-11-04 19:49:15 +00:00
|
|
|
<span class="input-text-wrap">
|
2016-10-12 10:16:30 +00:00
|
|
|
<input type="text" name="_sale_price" class="text wc_input_price sale_price" placeholder="<?php esc_attr_e( 'Sale price', 'woocommerce' ); ?>" value="">
|
2013-07-24 18:55:02 +00:00
|
|
|
</span>
|
|
|
|
</label>
|
|
|
|
<br class="clear" />
|
|
|
|
</div>
|
|
|
|
|
2015-09-21 19:03:03 +00:00
|
|
|
<?php if ( wc_tax_enabled() ) : ?>
|
|
|
|
<label class="alignleft">
|
2017-11-21 22:08:17 +00:00
|
|
|
<span class="title"><?php esc_html_e( 'Tax status', 'woocommerce' ); ?></span>
|
2015-09-21 19:03:03 +00:00
|
|
|
<span class="input-text-wrap">
|
|
|
|
<select class="tax_status" name="_tax_status">
|
2018-03-05 18:59:17 +00:00
|
|
|
<?php
|
2015-09-21 19:03:03 +00:00
|
|
|
$options = array(
|
|
|
|
'taxable' => __( 'Taxable', 'woocommerce' ),
|
|
|
|
'shipping' => __( 'Shipping only', 'woocommerce' ),
|
2016-08-27 01:46:45 +00:00
|
|
|
'none' => _x( 'None', 'Tax status', 'woocommerce' ),
|
2015-09-21 19:03:03 +00:00
|
|
|
);
|
|
|
|
foreach ( $options as $key => $value ) {
|
2017-11-21 22:08:17 +00:00
|
|
|
echo '<option value="' . esc_attr( $key ) . '">' . esc_html( $value ) . '</option>';
|
2015-09-21 19:03:03 +00:00
|
|
|
}
|
2018-03-05 18:59:17 +00:00
|
|
|
?>
|
2015-09-21 19:03:03 +00:00
|
|
|
</select>
|
|
|
|
</span>
|
|
|
|
</label>
|
|
|
|
<br class="clear" />
|
|
|
|
<label class="alignleft">
|
2017-11-21 22:08:17 +00:00
|
|
|
<span class="title"><?php esc_html_e( 'Tax class', 'woocommerce' ); ?></span>
|
2015-09-21 19:03:03 +00:00
|
|
|
<span class="input-text-wrap">
|
|
|
|
<select class="tax_class" name="_tax_class">
|
2018-03-05 18:59:17 +00:00
|
|
|
<?php
|
2015-09-21 19:03:03 +00:00
|
|
|
$options = array(
|
2016-08-27 01:46:45 +00:00
|
|
|
'' => __( 'Standard', 'woocommerce' ),
|
2015-09-21 19:03:03 +00:00
|
|
|
);
|
2013-07-30 13:43:45 +00:00
|
|
|
|
2015-09-21 19:03:03 +00:00
|
|
|
$tax_classes = WC_Tax::get_tax_classes();
|
2013-07-30 13:43:45 +00:00
|
|
|
|
2017-03-07 20:24:24 +00:00
|
|
|
if ( ! empty( $tax_classes ) ) {
|
2015-09-21 19:03:03 +00:00
|
|
|
foreach ( $tax_classes as $class ) {
|
|
|
|
$options[ sanitize_title( $class ) ] = esc_html( $class );
|
|
|
|
}
|
2017-03-07 20:24:24 +00:00
|
|
|
}
|
2013-07-30 13:43:45 +00:00
|
|
|
|
2015-09-21 19:03:03 +00:00
|
|
|
foreach ( $options as $key => $value ) {
|
2018-05-08 15:58:51 +00:00
|
|
|
echo '<option value="' . esc_attr( $key ) . '">' . esc_html( $value ) . '</option>';
|
2015-09-21 19:03:03 +00:00
|
|
|
}
|
2018-03-05 18:59:17 +00:00
|
|
|
?>
|
2015-09-21 19:03:03 +00:00
|
|
|
</select>
|
|
|
|
</span>
|
|
|
|
</label>
|
|
|
|
<br class="clear" />
|
|
|
|
<?php endif; ?>
|
2013-07-30 13:43:45 +00:00
|
|
|
|
2013-08-22 10:58:03 +00:00
|
|
|
<?php if ( wc_product_weight_enabled() || wc_product_dimensions_enabled() ) : ?>
|
2013-07-24 18:55:02 +00:00
|
|
|
<div class="dimension_fields">
|
|
|
|
|
2013-08-22 10:58:03 +00:00
|
|
|
<?php if ( wc_product_weight_enabled() ) : ?>
|
2013-07-24 18:55:02 +00:00
|
|
|
<label>
|
2017-11-21 22:08:17 +00:00
|
|
|
<span class="title"><?php esc_html_e( 'Weight', 'woocommerce' ); ?></span>
|
2014-11-04 19:49:15 +00:00
|
|
|
<span class="input-text-wrap">
|
2018-05-08 15:58:51 +00:00
|
|
|
<input type="text" name="_weight" class="text weight" placeholder="<?php echo esc_attr( wc_format_localized_decimal( 0 ) ); ?>" value="">
|
2013-07-24 18:55:02 +00:00
|
|
|
</span>
|
|
|
|
</label>
|
|
|
|
<br class="clear" />
|
|
|
|
<?php endif; ?>
|
|
|
|
|
2013-08-22 10:58:03 +00:00
|
|
|
<?php if ( wc_product_dimensions_enabled() ) : ?>
|
2013-07-24 18:55:02 +00:00
|
|
|
<div class="inline-edit-group dimensions">
|
|
|
|
<div>
|
2017-11-21 22:08:17 +00:00
|
|
|
<span class="title"><?php esc_html_e( 'L/W/H', 'woocommerce' ); ?></span>
|
2014-11-04 19:49:15 +00:00
|
|
|
<span class="input-text-wrap">
|
2015-11-11 23:05:57 +00:00
|
|
|
<input type="text" name="_length" class="text wc_input_decimal length" placeholder="<?php esc_attr_e( 'Length', 'woocommerce' ); ?>" value="">
|
|
|
|
<input type="text" name="_width" class="text wc_input_decimal width" placeholder="<?php esc_attr_e( 'Width', 'woocommerce' ); ?>" value="">
|
|
|
|
<input type="text" name="_height" class="text wc_input_decimal height" placeholder="<?php esc_attr_e( 'Height', 'woocommerce' ); ?>" value="">
|
2013-07-24 18:55:02 +00:00
|
|
|
</span>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<?php endif; ?>
|
|
|
|
|
|
|
|
</div>
|
|
|
|
<?php endif; ?>
|
|
|
|
|
2017-11-15 22:10:06 +00:00
|
|
|
<div class="inline-edit-group">
|
2017-11-21 22:08:17 +00:00
|
|
|
<span class="title"><?php esc_html_e( 'Shipping class', 'woocommerce' ); ?></span>
|
2014-11-04 19:49:15 +00:00
|
|
|
<span class="input-text-wrap">
|
|
|
|
<select class="shipping_class" name="_shipping_class">
|
2017-11-21 22:08:17 +00:00
|
|
|
<option value="_no_shipping_class"><?php esc_html_e( 'No shipping class', 'woocommerce' ); ?></option>
|
2018-03-05 18:59:17 +00:00
|
|
|
<?php
|
2014-11-04 19:49:15 +00:00
|
|
|
foreach ( $shipping_class as $key => $value ) {
|
2017-11-21 22:08:17 +00:00
|
|
|
echo '<option value="' . esc_attr( $value->slug ) . '">' . esc_html( $value->name ) . '</option>';
|
2014-11-04 19:49:15 +00:00
|
|
|
}
|
2018-03-05 18:59:17 +00:00
|
|
|
?>
|
2014-11-04 19:49:15 +00:00
|
|
|
</select>
|
|
|
|
</span>
|
2017-11-15 22:10:06 +00:00
|
|
|
</div>
|
2014-11-04 19:49:15 +00:00
|
|
|
|
2017-11-15 22:10:06 +00:00
|
|
|
<div class="inline-edit-group">
|
|
|
|
<label class="alignleft">
|
2017-11-21 22:08:17 +00:00
|
|
|
<span class="title"><?php esc_html_e( 'Visibility', 'woocommerce' ); ?></span>
|
2017-11-15 22:10:06 +00:00
|
|
|
<span class="input-text-wrap">
|
|
|
|
<select class="visibility" name="_visibility">
|
2018-03-05 18:59:17 +00:00
|
|
|
<?php
|
|
|
|
$options = apply_filters(
|
2020-04-14 10:48:02 +00:00
|
|
|
'woocommerce_product_visibility_options',
|
|
|
|
array(
|
2018-03-05 18:59:17 +00:00
|
|
|
'visible' => __( 'Catalog & search', 'woocommerce' ),
|
|
|
|
'catalog' => __( 'Catalog', 'woocommerce' ),
|
|
|
|
'search' => __( 'Search', 'woocommerce' ),
|
|
|
|
'hidden' => __( 'Hidden', 'woocommerce' ),
|
|
|
|
)
|
|
|
|
);
|
2017-11-15 22:10:06 +00:00
|
|
|
foreach ( $options as $key => $value ) {
|
2017-11-21 22:08:17 +00:00
|
|
|
echo '<option value="' . esc_attr( $key ) . '">' . esc_html( $value ) . '</option>';
|
2017-11-15 22:10:06 +00:00
|
|
|
}
|
2018-03-05 18:59:17 +00:00
|
|
|
?>
|
2017-11-15 22:10:06 +00:00
|
|
|
</select>
|
|
|
|
</span>
|
|
|
|
</label>
|
|
|
|
<label class="alignleft featured">
|
|
|
|
<input type="checkbox" name="_featured" value="1">
|
2017-11-21 22:08:17 +00:00
|
|
|
<span class="checkbox-title"><?php esc_html_e( 'Featured', 'woocommerce' ); ?></span>
|
2017-11-15 22:10:06 +00:00
|
|
|
</label>
|
|
|
|
</div>
|
|
|
|
|
2018-05-08 15:58:51 +00:00
|
|
|
<?php if ( get_option( 'woocommerce_manage_stock' ) === 'yes' ) : ?>
|
|
|
|
<div class="inline-edit-group manage_stock_field">
|
2017-11-15 22:10:06 +00:00
|
|
|
<label class="manage_stock">
|
|
|
|
<input type="checkbox" name="_manage_stock" value="1">
|
2017-11-21 22:08:17 +00:00
|
|
|
<span class="checkbox-title"><?php esc_html_e( 'Manage stock?', 'woocommerce' ); ?></span>
|
2017-11-15 22:10:06 +00:00
|
|
|
</label>
|
|
|
|
</div>
|
|
|
|
<?php endif; ?>
|
|
|
|
|
|
|
|
<label class="stock_status_field">
|
2017-11-21 22:08:17 +00:00
|
|
|
<span class="title"><?php esc_html_e( 'In stock?', 'woocommerce' ); ?></span>
|
2014-11-04 19:49:15 +00:00
|
|
|
<span class="input-text-wrap">
|
|
|
|
<select class="stock_status" name="_stock_status">
|
2018-03-05 18:59:17 +00:00
|
|
|
<?php
|
2020-04-14 10:48:02 +00:00
|
|
|
echo '<option value="" id="stock_status_no_change">' . esc_html__( '— No Change —', 'woocommerce' ) . '</option>';
|
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
|
|
|
foreach ( wc_get_product_stock_status_options() as $key => $value ) {
|
2017-11-21 22:08:17 +00:00
|
|
|
echo '<option value="' . esc_attr( $key ) . '">' . esc_html( $value ) . '</option>';
|
2013-07-24 18:55:02 +00:00
|
|
|
}
|
2018-03-05 18:59:17 +00:00
|
|
|
?>
|
2013-07-24 18:55:02 +00:00
|
|
|
</select>
|
2020-07-14 14:02:59 +00:00
|
|
|
<div class="wc-quick-edit-warning" style="display:none">
|
2020-04-14 10:48:02 +00:00
|
|
|
<?php echo esc_html__( 'This will change the stock status of all variations.', 'woocommerce' ); ?></p>
|
|
|
|
</div>
|
2013-07-24 18:55:02 +00:00
|
|
|
</span>
|
|
|
|
</label>
|
|
|
|
|
|
|
|
<div class="stock_fields">
|
2018-05-08 15:58:51 +00:00
|
|
|
<?php if ( get_option( 'woocommerce_manage_stock' ) === 'yes' ) : ?>
|
2013-07-24 18:55:02 +00:00
|
|
|
<label class="stock_qty_field">
|
2017-11-21 22:08:17 +00:00
|
|
|
<span class="title"><?php esc_html_e( 'Stock qty', 'woocommerce' ); ?></span>
|
2014-11-04 19:49:15 +00:00
|
|
|
<span class="input-text-wrap">
|
2013-08-08 06:24:38 +00:00
|
|
|
<input type="number" name="_stock" class="text stock" step="any" value="">
|
2013-07-24 18:55:02 +00:00
|
|
|
</span>
|
|
|
|
</label>
|
|
|
|
<?php endif; ?>
|
|
|
|
</div>
|
|
|
|
|
2017-11-15 22:10:06 +00:00
|
|
|
<label class="alignleft backorder_field">
|
2017-11-21 22:08:17 +00:00
|
|
|
<span class="title"><?php esc_html_e( 'Backorders?', 'woocommerce' ); ?></span>
|
2014-11-04 19:49:15 +00:00
|
|
|
<span class="input-text-wrap">
|
|
|
|
<select class="backorders" name="_backorders">
|
2018-03-05 18:59:17 +00:00
|
|
|
<?php
|
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
|
|
|
foreach ( wc_get_product_backorder_options() as $key => $value ) {
|
2017-11-21 22:08:17 +00:00
|
|
|
echo '<option value="' . esc_attr( $key ) . '">' . esc_html( $value ) . '</option>';
|
2013-09-06 10:17:41 +00:00
|
|
|
}
|
2018-03-05 18:59:17 +00:00
|
|
|
?>
|
2013-09-06 10:17:41 +00:00
|
|
|
</select>
|
|
|
|
</span>
|
|
|
|
</label>
|
|
|
|
|
2013-08-08 07:46:46 +00:00
|
|
|
<?php do_action( 'woocommerce_product_quick_edit_end' ); ?>
|
|
|
|
|
2013-07-24 18:55:02 +00:00
|
|
|
<input type="hidden" name="woocommerce_quick_edit" value="1" />
|
2018-05-08 15:58:51 +00:00
|
|
|
<input type="hidden" name="woocommerce_quick_edit_nonce" value="<?php echo esc_attr( wp_create_nonce( 'woocommerce_quick_edit_nonce' ) ); ?>" />
|
2013-07-24 18:55:02 +00:00
|
|
|
</div>
|
2014-07-04 06:42:14 +00:00
|
|
|
</fieldset>
|