2013-08-06 10:41:20 +00:00
< ? php
/**
* Product Data
*
* Displays the product data box , tabbed , with several panels covering price , stock etc .
*
* @ author WooThemes
* @ category Admin
* @ package WooCommerce / Admin / Meta Boxes
* @ version 2.1 . 0
*/
if ( ! defined ( 'ABSPATH' ) ) exit ; // Exit if accessed directly
/**
* WC_Meta_Box_Product_Data
*/
class WC_Meta_Box_Product_Data {
/**
* Output the metabox
*/
public static function output ( $post ) {
2014-06-08 20:33:11 +00:00
global $post , $thepostid ;
2013-08-06 10:41:20 +00:00
wp_nonce_field ( 'woocommerce_save_data' , 'woocommerce_meta_nonce' );
$thepostid = $post -> ID ;
if ( $terms = wp_get_object_terms ( $post -> ID , 'product_type' ) )
$product_type = sanitize_title ( current ( $terms ) -> name );
else
2014-03-27 23:37:00 +00:00
$product_type = apply_filters ( 'default_product_type' , 'simple' );
2013-08-06 10:41:20 +00:00
$product_type_selector = apply_filters ( 'product_type_selector' , array (
'simple' => __ ( 'Simple product' , 'woocommerce' ),
'grouped' => __ ( 'Grouped product' , 'woocommerce' ),
'external' => __ ( 'External/Affiliate product' , 'woocommerce' ),
'variable' => __ ( 'Variable product' , 'woocommerce' )
), $product_type );
$type_box = '<label for="product-type"><select id="product-type" name="product-type"><optgroup label="' . __ ( 'Product Type' , 'woocommerce' ) . '">' ;
foreach ( $product_type_selector as $value => $label )
$type_box .= '<option value="' . esc_attr ( $value ) . '" ' . selected ( $product_type , $value , false ) . '>' . esc_html ( $label ) . '</option>' ;
$type_box .= '</optgroup></select></label>' ;
2013-08-17 00:55:05 +00:00
$product_type_options = apply_filters ( 'product_type_options' , array (
2013-08-06 10:41:20 +00:00
'virtual' => array (
2013-08-17 00:55:05 +00:00
'id' => '_virtual' ,
2013-08-06 10:41:20 +00:00
'wrapper_class' => 'show_if_simple' ,
2013-08-17 00:55:05 +00:00
'label' => __ ( 'Virtual' , 'woocommerce' ),
'description' => __ ( 'Virtual products are intangible and aren\'t shipped.' , 'woocommerce' ),
'default' => 'no'
2013-08-06 10:41:20 +00:00
),
'downloadable' => array (
2013-08-17 00:55:05 +00:00
'id' => '_downloadable' ,
2013-08-06 10:41:20 +00:00
'wrapper_class' => 'show_if_simple' ,
2013-08-17 00:55:05 +00:00
'label' => __ ( 'Downloadable' , 'woocommerce' ),
'description' => __ ( 'Downloadable products give access to a file upon purchase.' , 'woocommerce' ),
'default' => 'no'
2013-08-06 10:41:20 +00:00
)
) );
foreach ( $product_type_options as $key => $option ) {
$selected_value = get_post_meta ( $post -> ID , '_' . $key , true );
2013-08-17 00:55:05 +00:00
2014-01-26 13:59:10 +00:00
if ( $selected_value == '' && isset ( $option [ 'default' ] ) ) {
2013-08-17 00:55:05 +00:00
$selected_value = $option [ 'default' ];
2014-01-26 13:59:10 +00:00
}
2013-08-17 00:55:05 +00:00
2013-08-06 10:41:20 +00:00
$type_box .= '<label for="' . esc_attr ( $option [ 'id' ] ) . '" class="' . esc_attr ( $option [ 'wrapper_class' ] ) . ' tips" data-tip="' . esc_attr ( $option [ 'description' ] ) . '">' . esc_html ( $option [ 'label' ] ) . ': <input type="checkbox" name="' . esc_attr ( $option [ 'id' ] ) . '" id="' . esc_attr ( $option [ 'id' ] ) . '" ' . checked ( $selected_value , 'yes' , false ) . ' /></label>' ;
}
?>
< div class = " panel-wrap product_data " >
< span class = " type_box " > & mdash ; < ? php echo $type_box ; ?> </span>
< div class = " wc-tabs-back " ></ div >
< ul class = " product_data_tabs wc-tabs " style = " display:none; " >
< ? php
$product_data_tabs = apply_filters ( 'woocommerce_product_data_tabs' , array (
'general' => array (
'label' => __ ( 'General' , 'woocommerce' ),
'target' => 'general_product_data' ,
'class' => array ( 'hide_if_grouped' ),
),
'inventory' => array (
'label' => __ ( 'Inventory' , 'woocommerce' ),
'target' => 'inventory_product_data' ,
'class' => array ( 'show_if_simple' , 'show_if_variable' , 'show_if_grouped' ),
),
'shipping' => array (
'label' => __ ( 'Shipping' , 'woocommerce' ),
'target' => 'shipping_product_data' ,
'class' => array ( 'hide_if_virtual' , 'hide_if_grouped' , 'hide_if_external' ),
),
'linked_product' => array (
'label' => __ ( 'Linked Products' , 'woocommerce' ),
'target' => 'linked_product_data' ,
'class' => array (),
),
'attribute' => array (
'label' => __ ( 'Attributes' , 'woocommerce' ),
2013-10-22 15:46:59 +00:00
'target' => 'product_attributes' ,
2013-08-06 10:41:20 +00:00
'class' => array (),
),
'variations' => array (
'label' => __ ( 'Variations' , 'woocommerce' ),
'target' => 'variable_product_options' ,
'class' => array ( 'variations_tab' , 'show_if_variable' ),
),
'advanced' => array (
'label' => __ ( 'Advanced' , 'woocommerce' ),
'target' => 'advanced_product_data' ,
'class' => array (),
)
) );
foreach ( $product_data_tabs as $key => $tab ) {
?> <li class="<?php echo $key; ?>_options <?php echo $key; ?>_tab <?php echo implode( ' ' , $tab['class'] ); ?>">
< a href = " #<?php echo $tab['target'] ; ?> " >< ? php echo esc_html ( $tab [ 'label' ] ); ?> </a>
</ li >< ? php
}
do_action ( 'woocommerce_product_write_panel_tabs' );
?>
</ ul >
< div id = " general_product_data " class = " panel woocommerce_options_panel " >< ? php
echo '<div class="options_group hide_if_grouped">' ;
// SKU
2013-08-22 10:58:03 +00:00
if ( wc_product_sku_enabled () )
2013-08-06 10:41:20 +00:00
woocommerce_wp_text_input ( array ( 'id' => '_sku' , 'label' => '<abbr title="' . __ ( 'Stock Keeping Unit' , 'woocommerce' ) . '">' . __ ( 'SKU' , 'woocommerce' ) . '</abbr>' , 'desc_tip' => 'true' , 'description' => __ ( 'SKU refers to a Stock-keeping unit, a unique identifier for each distinct product and service that can be purchased.' , 'woocommerce' ) ) );
else
echo '<input type="hidden" name="_sku" value="' . esc_attr ( get_post_meta ( $thepostid , '_sku' , true ) ) . '" />' ;
do_action ( 'woocommerce_product_options_sku' );
echo '</div>' ;
echo '<div class="options_group show_if_external">' ;
// External URL
woocommerce_wp_text_input ( array ( 'id' => '_product_url' , 'label' => __ ( 'Product URL' , 'woocommerce' ), 'placeholder' => 'http://' , 'description' => __ ( 'Enter the external URL to the product.' , 'woocommerce' ) ) );
// Button text
woocommerce_wp_text_input ( array ( 'id' => '_button_text' , 'label' => __ ( 'Button text' , 'woocommerce' ), 'placeholder' => _x ( 'Buy product' , 'placeholder' , 'woocommerce' ), 'description' => __ ( 'This text will be shown on the button linking to the external product.' , 'woocommerce' ) ) );
echo '</div>' ;
echo '<div class="options_group pricing show_if_simple show_if_external">' ;
// Price
2013-11-12 17:43:30 +00:00
woocommerce_wp_text_input ( array ( 'id' => '_regular_price' , 'label' => __ ( 'Regular Price' , 'woocommerce' ) . ' (' . get_woocommerce_currency_symbol () . ')' , 'data_type' => 'price' ) );
2013-08-06 10:41:20 +00:00
// Special Price
2013-11-12 17:43:30 +00:00
woocommerce_wp_text_input ( array ( 'id' => '_sale_price' , 'data_type' => 'price' , 'label' => __ ( 'Sale Price' , 'woocommerce' ) . ' (' . get_woocommerce_currency_symbol () . ')' , 'description' => '<a href="#" class="sale_schedule">' . __ ( 'Schedule' , 'woocommerce' ) . '</a>' ) );
2013-08-06 10:41:20 +00:00
// Special Price date range
$sale_price_dates_from = ( $date = get_post_meta ( $thepostid , '_sale_price_dates_from' , true ) ) ? date_i18n ( 'Y-m-d' , $date ) : '' ;
$sale_price_dates_to = ( $date = get_post_meta ( $thepostid , '_sale_price_dates_to' , true ) ) ? date_i18n ( 'Y-m-d' , $date ) : '' ;
echo ' < p class = " form-field sale_price_dates_fields " >
< label for = " _sale_price_dates_from " > ' . __( ' Sale Price Dates ', ' woocommerce ' ) . ' </ label >
2013-11-20 19:11:59 +00:00
< input type = " text " class = " short " name = " _sale_price_dates_from " id = " _sale_price_dates_from " value = " ' . esc_attr( $sale_price_dates_from ) . ' " placeholder = " ' . _x( 'From…', 'placeholder', 'woocommerce' ) . ' YYYY-MM-DD " maxlength = " 10 " pattern = " [0-9] { 4}-(0[1-9]|1[012])-(0[1-9]|1[0-9]|2[0-9]|3[01]) " />
< input type = " text " class = " short " name = " _sale_price_dates_to " id = " _sale_price_dates_to " value = " ' . esc_attr( $sale_price_dates_to ) . ' " placeholder = " ' . _x( 'To…', 'placeholder', 'woocommerce' ) . ' YYYY-MM-DD " maxlength = " 10 " pattern = " [0-9] { 4}-(0[1-9]|1[012])-(0[1-9]|1[0-9]|2[0-9]|3[01]) " />
2013-08-06 10:41:20 +00:00
< a href = " # " class = " cancel_sale_schedule " > '. __( ' Cancel ', ' woocommerce ' ) .' </ a >
</ p > ' ;
do_action ( 'woocommerce_product_options_pricing' );
echo '</div>' ;
echo '<div class="options_group show_if_downloadable">' ;
2013-09-20 16:01:09 +00:00
?>
< div class = " form-field downloadable_files " >
< label >< ? php _e ( 'Downloadable Files' , 'woocommerce' ); ?> :</label>
< table class = " widefat " >
< thead >
< tr >
2013-09-26 15:35:37 +00:00
< th class = " sort " >& nbsp ; </ th >
2013-09-20 16:01:09 +00:00
< th >< ? php _e ( 'Name' , 'woocommerce' ); ?> <span class="tips" data-tip="<?php _e( 'This is the name of the download shown to the customer.', 'woocommerce' ); ?>">[?]</span></th>
< th colspan = " 2 " >< ? php _e ( 'File URL' , 'woocommerce' ); ?> <span class="tips" data-tip="<?php _e( 'This is the URL or absolute path to the file which customers will get access to.', 'woocommerce' ); ?>">[?]</span></th>
< th >& nbsp ; </ th >
</ tr >
</ thead >
< tfoot >
< tr >
2013-09-26 15:35:37 +00:00
< th colspan = " 5 " >
2013-09-20 16:01:09 +00:00
< a href = " # " class = " button insert " data - row = " <?php
$file = array (
'file' => '' ,
'name' => ''
);
ob_start ();
include ( 'views/html-product-download.php' );
echo esc_attr ( ob_get_clean () );
?> "><?php _e( 'Add File', 'woocommerce' ); ?></a>
</ th >
</ tr >
</ tfoot >
< tbody >
< ? php
$downloadable_files = get_post_meta ( $post -> ID , '_downloadable_files' , true );
if ( $downloadable_files ) {
foreach ( $downloadable_files as $key => $file ) {
include ( 'views/html-product-download.php' );
}
}
?>
</ tbody >
</ table >
</ div >
< ? php
2013-08-06 10:41:20 +00:00
// Download Limit
woocommerce_wp_text_input ( array ( 'id' => '_download_limit' , 'label' => __ ( 'Download Limit' , 'woocommerce' ), 'placeholder' => __ ( 'Unlimited' , 'woocommerce' ), 'description' => __ ( 'Leave blank for unlimited re-downloads.' , 'woocommerce' ), 'type' => 'number' , 'custom_attributes' => array (
'step' => '1' ,
'min' => '0'
) ) );
// Expirey
woocommerce_wp_text_input ( array ( 'id' => '_download_expiry' , 'label' => __ ( 'Download Expiry' , 'woocommerce' ), 'placeholder' => __ ( 'Never' , 'woocommerce' ), 'description' => __ ( 'Enter the number of days before a download link expires, or leave blank.' , 'woocommerce' ), 'type' => 'number' , 'custom_attributes' => array (
'step' => '1' ,
'min' => '0'
) ) );
2013-08-20 12:52:06 +00:00
// Download Type
2013-09-20 16:01:09 +00:00
woocommerce_wp_select ( array ( 'id' => '_download_type' , 'label' => __ ( 'Download Type' , 'woocommerce' ), 'description' => sprintf ( __ ( 'Choose a download type - this controls the <a href="%s">schema</a>.' , 'woocommerce' ), 'http://schema.org/' ), 'options' => array (
2013-08-20 12:52:06 +00:00
'' => __ ( 'Standard Product' , 'woocommerce' ),
'application' => __ ( 'Application/Software' , 'woocommerce' ),
'music' => __ ( 'Music' , 'woocommerce' ),
) ) );
2013-08-06 10:41:20 +00:00
do_action ( 'woocommerce_product_options_downloads' );
echo '</div>' ;
if ( get_option ( 'woocommerce_calc_taxes' ) == 'yes' ) {
echo '<div class="options_group show_if_simple show_if_external show_if_variable">' ;
// Tax
woocommerce_wp_select ( array ( 'id' => '_tax_status' , 'label' => __ ( 'Tax Status' , 'woocommerce' ), 'options' => array (
'taxable' => __ ( 'Taxable' , 'woocommerce' ),
'shipping' => __ ( 'Shipping only' , 'woocommerce' ),
2014-03-03 14:47:19 +00:00
'none' => _x ( 'None' , 'Tax status' , 'woocommerce' )
2013-08-06 10:41:20 +00:00
) ) );
$tax_classes = array_filter ( array_map ( 'trim' , explode ( " \n " , get_option ( 'woocommerce_tax_classes' ) ) ) );
$classes_options = array ();
$classes_options [ '' ] = __ ( 'Standard' , 'woocommerce' );
if ( $tax_classes )
foreach ( $tax_classes as $class )
$classes_options [ sanitize_title ( $class ) ] = esc_html ( $class );
woocommerce_wp_select ( array ( 'id' => '_tax_class' , 'label' => __ ( 'Tax Class' , 'woocommerce' ), 'options' => $classes_options ) );
do_action ( 'woocommerce_product_options_tax' );
echo '</div>' ;
}
do_action ( 'woocommerce_product_options_general_product_data' );
?>
</ div >
< div id = " inventory_product_data " class = " panel woocommerce_options_panel " >
< ? php
echo '<div class="options_group">' ;
2014-06-19 15:47:04 +00:00
if ( get_option ( 'woocommerce_manage_stock' ) == 'yes' ) {
2013-08-06 10:41:20 +00:00
// manage stock
2014-06-19 15:47:04 +00:00
woocommerce_wp_checkbox ( array ( 'id' => '_manage_stock' , 'wrapper_class' => 'show_if_simple show_if_variable' , 'label' => __ ( 'Manage stock?' , 'woocommerce' ), 'description' => __ ( 'Enable stock management at product level' , 'woocommerce' ) ) );
2013-08-06 10:41:20 +00:00
do_action ( 'woocommerce_product_options_stock' );
echo '<div class="stock_fields show_if_simple show_if_variable">' ;
// Stock
woocommerce_wp_text_input ( array ( 'id' => '_stock' , 'label' => __ ( 'Stock Qty' , 'woocommerce' ), 'desc_tip' => true , 'description' => __ ( 'Stock quantity. If this is a variable product this value will be used to control stock for all variations, unless you define stock at variation level.' , 'woocommerce' ), 'type' => 'number' , 'custom_attributes' => array (
'step' => 'any'
) ) );
2014-06-19 15:47:04 +00:00
// Backorders?
woocommerce_wp_select ( array ( 'id' => '_backorders' , 'label' => __ ( 'Allow Backorders?' , 'woocommerce' ), 'options' => array (
'no' => __ ( 'Do not allow' , 'woocommerce' ),
'notify' => __ ( 'Allow, but notify customer' , 'woocommerce' ),
'yes' => __ ( 'Allow' , 'woocommerce' )
), 'desc_tip' => true , 'description' => __ ( 'If managing stock, this controls whether or not backorders are allowed. If enabled, stock quantity can go below 0.' , 'woocommerce' ) ) );
2013-08-06 10:41:20 +00:00
do_action ( 'woocommerce_product_options_stock_fields' );
echo '</div>' ;
}
// Stock status
2014-06-24 12:02:09 +00:00
woocommerce_wp_select ( array ( 'id' => '_stock_status' , 'wrapper_class' => 'hide_if_variable' , 'label' => __ ( 'Stock status' , 'woocommerce' ), 'options' => array (
2013-08-06 10:41:20 +00:00
'instock' => __ ( 'In stock' , 'woocommerce' ),
'outofstock' => __ ( 'Out of stock' , 'woocommerce' )
), 'desc_tip' => true , 'description' => __ ( 'Controls whether or not the product is listed as "in stock" or "out of stock" on the frontend.' , 'woocommerce' ) ) );
2014-04-27 20:18:58 +00:00
do_action ( 'woocommerce_product_options_stock_status' );
2013-08-06 10:41:20 +00:00
echo '</div>' ;
echo '<div class="options_group show_if_simple show_if_variable">' ;
// Individual product
woocommerce_wp_checkbox ( array ( 'id' => '_sold_individually' , 'wrapper_class' => 'show_if_simple show_if_variable' , 'label' => __ ( 'Sold Individually' , 'woocommerce' ), 'description' => __ ( 'Enable this to only allow one of this item to be bought in a single order' , 'woocommerce' ) ) );
do_action ( 'woocommerce_product_options_sold_individually' );
echo '</div>' ;
2014-04-27 23:25:07 +00:00
do_action ( 'woocommerce_product_options_inventory_product_data' );
2013-08-06 10:41:20 +00:00
?>
</ div >
< div id = " shipping_product_data " class = " panel woocommerce_options_panel " >
< ? php
echo '<div class="options_group">' ;
// Weight
2013-10-01 16:54:29 +00:00
if ( wc_product_weight_enabled () )
2013-12-31 14:38:41 +00:00
woocommerce_wp_text_input ( array ( 'id' => '_weight' , 'label' => __ ( 'Weight' , 'woocommerce' ) . ' (' . get_option ( 'woocommerce_weight_unit' ) . ')' , 'placeholder' => wc_format_localized_decimal ( 0 ), 'desc_tip' => 'true' , 'description' => __ ( 'Weight in decimal form' , 'woocommerce' ), 'type' => 'text' , 'data_type' => 'decimal' ) );
2013-08-06 10:41:20 +00:00
// Size fields
2013-10-01 16:54:29 +00:00
if ( wc_product_dimensions_enabled () ) {
2013-08-06 10:41:20 +00:00
?> <p class="form-field dimensions_field">
< label for = " product_length " >< ? php echo __ ( 'Dimensions' , 'woocommerce' ) . ' (' . get_option ( 'woocommerce_dimension_unit' ) . ')' ; ?> </label>
< span class = " wrap " >
2013-11-12 17:43:30 +00:00
< input id = " product_length " placeholder = " <?php _e( 'Length', 'woocommerce' ); ?> " class = " input-text wc_input_decimal " size = " 6 " type = " text " name = " _length " value = " <?php echo esc_attr( wc_format_localized_decimal( get_post_meta( $thepostid , '_length', true ) ) ); ?> " />
< input placeholder = " <?php _e( 'Width', 'woocommerce' ); ?> " class = " input-text wc_input_decimal " size = " 6 " type = " text " name = " _width " value = " <?php echo esc_attr( wc_format_localized_decimal( get_post_meta( $thepostid , '_width', true ) ) ); ?> " />
< input placeholder = " <?php _e( 'Height', 'woocommerce' ); ?> " class = " input-text wc_input_decimal last " size = " 6 " type = " text " name = " _height " value = " <?php echo esc_attr( wc_format_localized_decimal( get_post_meta( $thepostid , '_height', true ) ) ); ?> " />
2013-08-06 10:41:20 +00:00
</ span >
2013-12-31 14:38:41 +00:00
< img class = " help_tip " data - tip = " <?php esc_attr_e( 'LxWxH in decimal form', 'woocommerce' ); ?> " src = " <?php echo esc_url( WC()->plugin_url() ); ?>/assets/images/help.png " height = " 16 " width = " 16 " />
2013-08-06 10:41:20 +00:00
</ p >< ? php
2013-10-01 16:54:29 +00:00
}
2013-08-06 10:41:20 +00:00
do_action ( 'woocommerce_product_options_dimensions' );
echo '</div>' ;
echo '<div class="options_group">' ;
// Shipping Class
$classes = get_the_terms ( $thepostid , 'product_shipping_class' );
if ( $classes && ! is_wp_error ( $classes ) ) $current_shipping_class = current ( $classes ) -> term_id ; else $current_shipping_class = '' ;
$args = array (
'taxonomy' => 'product_shipping_class' ,
'hide_empty' => 0 ,
'show_option_none' => __ ( 'No shipping class' , 'woocommerce' ),
'name' => 'product_shipping_class' ,
'id' => 'product_shipping_class' ,
'selected' => $current_shipping_class ,
'class' => 'select short'
);
2013-12-31 14:38:41 +00:00
?> <p class="form-field dimensions_field"><label for="product_shipping_class"><?php _e( 'Shipping class', 'woocommerce' ); ?></label> <?php wp_dropdown_categories( $args ); ?> <img class="help_tip" data-tip="<?php esc_attr_e( 'Shipping classes are used by certain shipping methods to group similar products.', 'woocommerce' ); ?>" src="<?php echo esc_url( WC()->plugin_url() ); ?>/assets/images/help.png" height="16" width="16" /></p><?php
2013-08-06 10:41:20 +00:00
do_action ( 'woocommerce_product_options_shipping' );
echo '</div>' ;
?>
</ div >
2013-10-22 15:46:59 +00:00
< div id = " product_attributes " class = " panel wc-metaboxes-wrapper " >
2013-08-06 10:41:20 +00:00
< p class = " toolbar " >
< a href = " # " class = " close_all " >< ? php _e ( 'Close all' , 'woocommerce' ); ?> </a><a href="#" class="expand_all"><?php _e( 'Expand all', 'woocommerce' ); ?></a>
</ p >
2013-11-01 17:06:14 +00:00
< div class = " product_attributes wc-metaboxes " >
2013-08-06 10:41:20 +00:00
< ? php
// Array of defined attribute taxonomies
2013-09-12 13:41:02 +00:00
$attribute_taxonomies = wc_get_attribute_taxonomies ();
2013-08-06 10:41:20 +00:00
// Product attributes - taxonomies and custom, ordered, with visibility and variation attributes set
$attributes = maybe_unserialize ( get_post_meta ( $thepostid , '_product_attributes' , true ) );
$i = - 1 ;
// Taxonomies
if ( $attribute_taxonomies ) {
2013-09-27 14:28:58 +00:00
foreach ( $attribute_taxonomies as $tax ) {
2013-08-06 10:41:20 +00:00
// Get name of taxonomy we're now outputting (pa_xxx)
2013-09-12 13:41:02 +00:00
$attribute_taxonomy_name = wc_attribute_taxonomy_name ( $tax -> attribute_name );
2013-08-06 10:41:20 +00:00
// Ensure it exists
if ( ! taxonomy_exists ( $attribute_taxonomy_name ) )
continue ;
2013-09-27 14:28:58 +00:00
$i ++ ;
2013-08-06 10:41:20 +00:00
// Get product data values for current taxonomy - this contains ordering and visibility data
if ( isset ( $attributes [ sanitize_title ( $attribute_taxonomy_name ) ] ) )
$attribute = $attributes [ sanitize_title ( $attribute_taxonomy_name ) ];
$position = empty ( $attribute [ 'position' ] ) ? 0 : absint ( $attribute [ 'position' ] );
// Get terms of this taxonomy associated with current product
$post_terms = wp_get_post_terms ( $thepostid , $attribute_taxonomy_name );
// Any set?
$has_terms = ( is_wp_error ( $post_terms ) || ! $post_terms || sizeof ( $post_terms ) == 0 ) ? 0 : 1 ;
?>
< div class = " woocommerce_attribute wc-metabox closed taxonomy <?php echo $attribute_taxonomy_name ; ?> " rel = " <?php echo $position ; ?> " < ? php if ( ! $has_terms ) echo 'style="display:none"' ; ?> >
< h3 >
< button type = " button " class = " remove_row button " >< ? php _e ( 'Remove' , 'woocommerce' ); ?> </button>
< div class = " handlediv " title = " <?php _e( 'Click to toggle', 'woocommerce' ); ?> " ></ div >
< strong class = " attribute_name " >< ? php echo apply_filters ( 'woocommerce_attribute_label' , $tax -> attribute_label ? $tax -> attribute_label : $tax -> attribute_name , $tax -> attribute_name ); ?> </strong>
</ h3 >
< table cellpadding = " 0 " cellspacing = " 0 " class = " woocommerce_attribute_data wc-metabox-content " >
< tbody >
< tr >
< td class = " attribute_name " >
< label >< ? php _e ( 'Name' , 'woocommerce' ); ?> :</label>
< strong >< ? php echo $tax -> attribute_label ? $tax -> attribute_label : $tax -> attribute_name ; ?> </strong>
< input type = " hidden " name = " attribute_names[<?php echo $i ; ?>] " value = " <?php echo esc_attr( $attribute_taxonomy_name ); ?> " />
< input type = " hidden " name = " attribute_position[<?php echo $i ; ?>] " class = " attribute_position " value = " <?php echo esc_attr( $position ); ?> " />
< input type = " hidden " name = " attribute_is_taxonomy[<?php echo $i ; ?>] " value = " 1 " />
</ td >
< td rowspan = " 3 " >
< label >< ? php _e ( 'Value(s)' , 'woocommerce' ); ?> :</label>
< ? php if ( $tax -> attribute_type == " select " ) : ?>
< select multiple = " multiple " data - placeholder = " <?php _e( 'Select terms', 'woocommerce' ); ?> " class = " multiselect attribute_values " name = " attribute_values[<?php echo $i ; ?>][] " >
< ? php
$all_terms = get_terms ( $attribute_taxonomy_name , 'orderby=name&hide_empty=0' );
if ( $all_terms ) {
foreach ( $all_terms as $term ) {
$has_term = has_term ( ( int ) $term -> term_id , $attribute_taxonomy_name , $thepostid ) ? 1 : 0 ;
echo '<option value="' . esc_attr ( $term -> slug ) . '" ' . selected ( $has_term , 1 , false ) . '>' . $term -> name . '</option>' ;
}
}
?>
</ select >
< button class = " button plus select_all_attributes " >< ? php _e ( 'Select all' , 'woocommerce' ); ?> </button> <button class="button minus select_no_attributes"><?php _e( 'Select none', 'woocommerce' ); ?></button>
< button class = " button fr plus add_new_attribute " data - attribute = " <?php echo $attribute_taxonomy_name ; ?> " >< ? php _e ( 'Add new' , 'woocommerce' ); ?> </button>
< ? php elseif ( $tax -> attribute_type == " text " ) : ?>
< input type = " text " name = " attribute_values[<?php echo $i ; ?>] " value = " <?php
// Text attributes should list terms pipe separated
if ( $post_terms ) {
$values = array ();
foreach ( $post_terms as $term )
$values [] = $term -> name ;
2013-10-24 18:36:22 +00:00
echo esc_attr ( implode ( ' ' . WC_DELIMITER . ' ' , $values ) );
2013-08-06 10:41:20 +00:00
}
?> " placeholder="<?php _e( 'Pipe (|) separate terms', 'woocommerce' ); ?>" />
< ? php endif ; ?>
< ? php do_action ( 'woocommerce_product_option_terms' , $tax , $i ); ?>
</ td >
</ tr >
< tr >
< td >
< label >< input type = " checkbox " class = " checkbox " < ? php
if ( isset ( $attribute [ 'is_visible' ] ) )
checked ( $attribute [ 'is_visible' ], 1 );
else
checked ( apply_filters ( 'default_attribute_visibility' , false , $tax ), true );
?> name="attribute_visibility[<?php echo $i; ?>]" value="1" /> <?php _e( 'Visible on the product page', 'woocommerce' ); ?></label>
</ td >
</ tr >
< tr >
< td >
< div class = " enable_variation show_if_variable " >
< label >< input type = " checkbox " class = " checkbox " < ? php
if ( isset ( $attribute [ 'is_variation' ] ) )
checked ( $attribute [ 'is_variation' ], 1 );
else
checked ( apply_filters ( 'default_attribute_variation' , false , $tax ), true );
?> name="attribute_variation[<?php echo $i; ?>]" value="1" /> <?php _e( 'Used for variations', 'woocommerce' ); ?></label>
</ div >
</ td >
</ tr >
</ tbody >
</ table >
</ div >
< ? php
}
}
// Custom Attributes
if ( ! empty ( $attributes ) ) foreach ( $attributes as $attribute ) {
if ( $attribute [ 'is_taxonomy' ] )
continue ;
$i ++ ;
$position = empty ( $attribute [ 'position' ] ) ? 0 : absint ( $attribute [ 'position' ] );
?>
< div class = " woocommerce_attribute wc-metabox closed " rel = " <?php echo $position ; ?> " >
< h3 >
< button type = " button " class = " remove_row button " >< ? php _e ( 'Remove' , 'woocommerce' ); ?> </button>
< div class = " handlediv " title = " <?php _e( 'Click to toggle', 'woocommerce' ); ?> " ></ div >
< strong class = " attribute_name " >< ? php echo apply_filters ( 'woocommerce_attribute_label' , esc_html ( $attribute [ 'name' ] ), esc_html ( $attribute [ 'name' ] ) ); ?> </strong>
</ h3 >
< table cellpadding = " 0 " cellspacing = " 0 " class = " woocommerce_attribute_data wc-metabox-content " >
< tbody >
< tr >
< td class = " attribute_name " >
< label >< ? php _e ( 'Name' , 'woocommerce' ); ?> :</label>
< input type = " text " class = " attribute_name " name = " attribute_names[<?php echo $i ; ?>] " value = " <?php echo esc_attr( $attribute['name'] ); ?> " />
< input type = " hidden " name = " attribute_position[<?php echo $i ; ?>] " class = " attribute_position " value = " <?php echo esc_attr( $position ); ?> " />
< input type = " hidden " name = " attribute_is_taxonomy[<?php echo $i ; ?>] " value = " 0 " />
</ td >
< td rowspan = " 3 " >
< label >< ? php _e ( 'Value(s)' , 'woocommerce' ); ?> :</label>
< textarea name = " attribute_values[<?php echo $i ; ?>] " cols = " 5 " rows = " 5 " placeholder = " <?php _e( 'Enter some text, or some attributes by pipe (|) separating values.', 'woocommerce' ); ?> " >< ? php echo esc_textarea ( $attribute [ 'value' ] ); ?> </textarea>
</ td >
</ tr >
< tr >
< td >
< label >< input type = " checkbox " class = " checkbox " < ? php checked ( $attribute [ 'is_visible' ], 1 ); ?> name="attribute_visibility[<?php echo $i; ?>]" value="1" /> <?php _e( 'Visible on the product page', 'woocommerce' ); ?></label>
</ td >
</ tr >
< tr >
< td >
< div class = " enable_variation show_if_variable " >
< label >< input type = " checkbox " class = " checkbox " < ? php checked ( $attribute [ 'is_variation' ], 1 ); ?> name="attribute_variation[<?php echo $i; ?>]" value="1" /> <?php _e( 'Used for variations', 'woocommerce' ); ?></label>
</ div >
</ td >
</ tr >
</ tbody >
</ table >
</ div >
< ? php
}
?>
</ div >
< p class = " toolbar " >
< button type = " button " class = " button button-primary add_attribute " >< ? php _e ( 'Add' , 'woocommerce' ); ?> </button>
< select name = " attribute_taxonomy " class = " attribute_taxonomy " >
< option value = " " >< ? php _e ( 'Custom product attribute' , 'woocommerce' ); ?> </option>
< ? php
if ( $attribute_taxonomies ) {
foreach ( $attribute_taxonomies as $tax ) {
2013-09-12 13:41:02 +00:00
$attribute_taxonomy_name = wc_attribute_taxonomy_name ( $tax -> attribute_name );
2013-08-06 10:41:20 +00:00
$label = $tax -> attribute_label ? $tax -> attribute_label : $tax -> attribute_name ;
echo '<option value="' . esc_attr ( $attribute_taxonomy_name ) . '">' . esc_html ( $label ) . '</option>' ;
}
}
?>
</ select >
< button type = " button " class = " button save_attributes " >< ? php _e ( 'Save attributes' , 'woocommerce' ); ?> </button>
</ p >
</ div >
< div id = " linked_product_data " class = " panel woocommerce_options_panel " >
< div class = " options_group " >
< p class = " form-field " >< label for = " upsell_ids " >< ? php _e ( 'Up-Sells' , 'woocommerce' ); ?> </label>
< select id = " upsell_ids " name = " upsell_ids[] " class = " ajax_chosen_select_products " multiple = " multiple " data - placeholder = " <?php _e( 'Search for a product…', 'woocommerce' ); ?> " >
< ? php
$upsell_ids = get_post_meta ( $post -> ID , '_upsell_ids' , true );
$product_ids = ! empty ( $upsell_ids ) ? array_map ( 'absint' , $upsell_ids ) : null ;
if ( $product_ids ) {
foreach ( $product_ids as $product_id ) {
$product = get_product ( $product_id );
if ( $product )
echo '<option value="' . esc_attr ( $product_id ) . '" selected="selected">' . esc_html ( $product -> get_formatted_name () ) . '</option>' ;
}
}
?>
</ select > < img class = " help_tip " data - tip = '<?php _e( ' Up - sells are products which you recommend instead of the currently viewed product , for example , products that are more profitable or better quality or more expensive . ', ' woocommerce ' ) ?>' src = " <?php echo WC()->plugin_url(); ?>/assets/images/help.png " height = " 16 " width = " 16 " /></ p >
< p class = " form-field " >< label for = " crosssell_ids " >< ? php _e ( 'Cross-Sells' , 'woocommerce' ); ?> </label>
< select id = " crosssell_ids " name = " crosssell_ids[] " class = " ajax_chosen_select_products " multiple = " multiple " data - placeholder = " <?php _e( 'Search for a product…', 'woocommerce' ); ?> " >
< ? php
$crosssell_ids = get_post_meta ( $post -> ID , '_crosssell_ids' , true );
$product_ids = ! empty ( $crosssell_ids ) ? array_map ( 'absint' , $crosssell_ids ) : null ;
if ( $product_ids ) {
foreach ( $product_ids as $product_id ) {
$product = get_product ( $product_id );
if ( $product )
echo '<option value="' . esc_attr ( $product_id ) . '" selected="selected">' . esc_html ( $product -> get_formatted_name () ) . '</option>' ;
}
}
?>
</ select > < img class = " help_tip " data - tip = '<?php _e( ' Cross - sells are products which you promote in the cart , based on the current product . ', ' woocommerce ' ) ?>' src = " <?php echo WC()->plugin_url(); ?>/assets/images/help.png " height = " 16 " width = " 16 " /></ p >
</ div >
< ? php
echo '<div class="options_group grouping show_if_simple show_if_external">' ;
// List Grouped products
$post_parents = array ();
$post_parents [ '' ] = __ ( 'Choose a grouped product…' , 'woocommerce' );
2013-11-19 11:22:59 +00:00
2013-10-14 19:47:32 +00:00
if ( $grouped_term = get_term_by ( 'slug' , 'grouped' , 'product_type' ) ) {
2013-11-19 11:22:59 +00:00
2013-10-14 19:47:32 +00:00
$posts_in = array_unique ( ( array ) get_objects_in_term ( $grouped_term -> term_id , 'product_type' ) );
if ( sizeof ( $posts_in ) > 0 ) {
$args = array (
2014-05-28 10:30:07 +00:00
'post_type' => 'product' ,
'post_status' => 'any' ,
'numberposts' => - 1 ,
'orderby' => 'title' ,
'order' => 'asc' ,
'post_parent' => 0 ,
'suppress_filters' => 0 ,
'include' => $posts_in ,
2013-10-14 19:47:32 +00:00
);
$grouped_products = get_posts ( $args );
if ( $grouped_products ) {
foreach ( $grouped_products as $product ) {
if ( $product -> ID == $post -> ID )
continue ;
$post_parents [ $product -> ID ] = $product -> post_title ;
}
2013-08-06 10:41:20 +00:00
}
}
2013-11-19 11:22:59 +00:00
2013-08-06 10:41:20 +00:00
}
woocommerce_wp_select ( array ( 'id' => 'parent_id' , 'label' => __ ( 'Grouping' , 'woocommerce' ), 'value' => absint ( $post -> post_parent ), 'options' => $post_parents , 'desc_tip' => true , 'description' => __ ( 'Set this option to make this product part of a grouped product.' , 'woocommerce' ) ) );
woocommerce_wp_hidden_input ( array ( 'id' => 'previous_parent_id' , 'value' => absint ( $post -> post_parent ) ) );
do_action ( 'woocommerce_product_options_grouping' );
echo '</div>' ;
?>
< ? php do_action ( 'woocommerce_product_options_related' ); ?>
</ div >
< div id = " advanced_product_data " class = " panel woocommerce_options_panel " >
< ? php
echo '<div class="options_group hide_if_external">' ;
// Purchase note
2013-12-31 14:38:41 +00:00
woocommerce_wp_textarea_input ( array ( 'id' => '_purchase_note' , 'label' => __ ( 'Purchase Note' , 'woocommerce' ), 'desc_tip' => 'true' , 'description' => __ ( 'Enter an optional note to send the customer after purchase.' , 'woocommerce' ) ) );
2013-08-06 10:41:20 +00:00
echo '</div>' ;
echo '<div class="options_group">' ;
// menu_order
2013-12-31 14:38:41 +00:00
woocommerce_wp_text_input ( array ( 'id' => 'menu_order' , 'label' => __ ( 'Menu order' , 'woocommerce' ), 'desc_tip' => 'true' , 'description' => __ ( 'Custom ordering position.' , 'woocommerce' ), 'value' => intval ( $post -> menu_order ), 'type' => 'number' , 'custom_attributes' => array (
2013-08-06 10:41:20 +00:00
'step' => '1'
) ) );
echo '</div>' ;
echo '<div class="options_group reviews">' ;
woocommerce_wp_checkbox ( array ( 'id' => 'comment_status' , 'label' => __ ( 'Enable reviews' , 'woocommerce' ), 'cbvalue' => 'open' , 'value' => esc_attr ( $post -> comment_status ) ) );
do_action ( 'woocommerce_product_options_reviews' );
echo '</div>' ;
?>
</ div >
< ? php
self :: output_variations ();
do_action ( 'woocommerce_product_data_panels' );
do_action ( 'woocommerce_product_write_panels' ); // _deprecated
?>
< div class = " clear " ></ div >
</ div >
< ? php
}
/**
* Show options for the variable product type
*/
2013-09-24 15:21:12 +00:00
public static function output_variations () {
2014-06-19 15:47:04 +00:00
global $post ;
2013-08-06 10:41:20 +00:00
$attributes = maybe_unserialize ( get_post_meta ( $post -> ID , '_product_attributes' , true ) );
// See if any are set
$variation_attribute_found = false ;
if ( $attributes ) foreach ( $attributes as $attribute ) {
if ( isset ( $attribute [ 'is_variation' ] ) ) {
$variation_attribute_found = true ;
break ;
}
}
// Get tax classes
2014-06-19 15:47:04 +00:00
$tax_classes = array_filter ( array_map ( 'trim' , explode ( " \n " , get_option ( 'woocommerce_tax_classes' ) ) ) );
$tax_class_options = array ();
2013-08-06 10:41:20 +00:00
$tax_class_options [ '' ] = __ ( 'Standard' , 'woocommerce' );
2014-06-19 15:47:04 +00:00
if ( $tax_classes ) {
foreach ( $tax_classes as $class ) {
2013-08-06 10:41:20 +00:00
$tax_class_options [ sanitize_title ( $class ) ] = esc_attr ( $class );
2014-06-19 15:47:04 +00:00
}
}
2014-04-22 01:13:13 +00:00
$backorder_options = array (
'no' => __ ( 'Do not allow' , 'woocommerce' ),
'notify' => __ ( 'Allow, but notify customer' , 'woocommerce' ),
'yes' => __ ( 'Allow' , 'woocommerce' )
);
2014-06-19 15:47:04 +00:00
$stock_status_options = array (
'instock' => __ ( 'In stock' , 'woocommerce' ),
'outofstock' => __ ( 'Out of stock' , 'woocommerce' )
);
2014-04-22 01:13:13 +00:00
2013-08-06 10:41:20 +00:00
?>
< div id = " variable_product_options " class = " panel wc-metaboxes-wrapper " >< div id = " variable_product_options_inner " >
< ? php if ( ! $variation_attribute_found ) : ?>
< div id = " message " class = " inline woocommerce-message " >
2013-11-19 11:22:59 +00:00
< p >< ? php _e ( 'Before adding variations, add and save some attributes on the <strong>Attributes</strong> tab.' , 'woocommerce' ); ?> </p>
2013-08-06 10:41:20 +00:00
2013-11-19 11:22:59 +00:00
< p class = " submit " >< a class = " button-primary " href = " <?php echo esc_url( apply_filters( 'woocommerce_docs_url', 'http://docs.woothemes.com/document/product-variations', 'product-variations' ) ); ?> " target = " _blank " >< ? php _e ( 'Learn more' , 'woocommerce' ); ?> </a></p>
2013-08-06 10:41:20 +00:00
</ div >
< ? php else : ?>
< p class = " toolbar " >
< a href = " # " class = " close_all " >< ? php _e ( 'Close all' , 'woocommerce' ); ?> </a><a href="#" class="expand_all"><?php _e( 'Expand all', 'woocommerce' ); ?></a>
< select id = " field_to_edit " >
2014-05-12 14:39:09 +00:00
< option value = " " >< ? php _e ( 'Choose a field to bulk edit…' , 'woocommerce' ); ?> </option>
< optgroup label = " <?php esc_attr_e( 'Status', 'woocommerce' ); ?> " >
< option value = " toggle_enabled " >< ? php _e ( 'Toggle "Enabled"' , 'woocommerce' ); ?> </option>
< option value = " toggle_downloadable " >< ? php _e ( 'Toggle "Downloadable"' , 'woocommerce' ); ?> </option>
< option value = " toggle_virtual " >< ? php _e ( 'Toggle "Virtual"' , 'woocommerce' ); ?> </option>
< option value = " delete_all " >< ? php _e ( 'Delete all variations' , 'woocommerce' ); ?> </option>
</ optgroup >
< optgroup label = " <?php esc_attr_e( 'Pricing', 'woocommerce' ); ?> " >
< option value = " variable_regular_price " >< ? php _e ( 'Prices' , 'woocommerce' ); ?> </option>
< option value = " variable_regular_price_increase " >< ? php _e ( 'Prices increase by (fixed amount or %)' , 'woocommerce' ); ?> </option>
< option value = " variable_regular_price_decrease " >< ? php _e ( 'Prices decrease by (fixed amount or %)' , 'woocommerce' ); ?> </option>
< option value = " variable_sale_price " >< ? php _e ( 'Sale prices' , 'woocommerce' ); ?> </option>
< option value = " variable_sale_price_increase " >< ? php _e ( 'Sale prices increase by (fixed amount or %)' , 'woocommerce' ); ?> </option>
< option value = " variable_sale_price_decrease " >< ? php _e ( 'Sale prices decrease by (fixed amount or %)' , 'woocommerce' ); ?> </option>
</ optgroup >
< optgroup label = " <?php esc_attr_e( 'Inventory', 'woocommerce' ); ?> " >
2014-06-19 15:47:04 +00:00
< option value = " toggle_manage_stock " >< ? php _e ( 'Toggle "Manage stock"' , 'woocommerce' ); ?> </option>
2014-05-12 14:39:09 +00:00
< option value = " variable_stock " >< ? php _e ( 'Stock' , 'woocommerce' ); ?> </option>
</ optgroup >
< optgroup label = " <?php esc_attr_e( 'Shipping', 'woocommerce' ); ?> " >
< option value = " variable_length " >< ? php _e ( 'Length' , 'woocommerce' ); ?> </option>
< option value = " variable_width " >< ? php _e ( 'Width' , 'woocommerce' ); ?> </option>
< option value = " variable_height " >< ? php _e ( 'Height' , 'woocommerce' ); ?> </option>
< option value = " variable_weight " >< ? php _e ( 'Weight' , 'woocommerce' ); ?> </option>
</ optgroup >
< optgroup label = " <?php esc_attr_e( 'Downloadable products', 'woocommerce' ); ?> " >
< option value = " variable_download_limit " >< ? php _e ( 'Download limit' , 'woocommerce' ); ?> </option>
< option value = " variable_download_expiry " >< ? php _e ( 'Download Expiry' , 'woocommerce' ); ?> </option>
</ optgroup >
2013-08-06 10:41:20 +00:00
< ? php do_action ( 'woocommerce_variable_product_bulk_edit_actions' ); ?>
</ select >
< a class = " button bulk_edit " >< ? php _e ( 'Go' , 'woocommerce' ); ?> </a>
</ p >
< div class = " woocommerce_variations wc-metaboxes " >
< ? php
// Get parent data
$parent_data = array (
2014-06-19 15:47:04 +00:00
'id' => $post -> ID ,
'attributes' => $attributes ,
'tax_class_options' => $tax_class_options ,
'sku' => get_post_meta ( $post -> ID , '_sku' , true ),
'weight' => wc_format_localized_decimal ( get_post_meta ( $post -> ID , '_weight' , true ) ),
'length' => wc_format_localized_decimal ( get_post_meta ( $post -> ID , '_length' , true ) ),
'width' => wc_format_localized_decimal ( get_post_meta ( $post -> ID , '_width' , true ) ),
'height' => wc_format_localized_decimal ( get_post_meta ( $post -> ID , '_height' , true ) ),
'tax_class' => get_post_meta ( $post -> ID , '_tax_class' , true ),
'backorder_options' => $backorder_options ,
'stock_status_options' => $stock_status_options
2013-08-06 10:41:20 +00:00
);
if ( ! $parent_data [ 'weight' ] )
2013-11-12 17:43:30 +00:00
$parent_data [ 'weight' ] = wc_format_localized_decimal ( 0 );
2013-08-06 10:41:20 +00:00
if ( ! $parent_data [ 'length' ] )
2013-11-12 17:43:30 +00:00
$parent_data [ 'length' ] = wc_format_localized_decimal ( 0 );
2013-08-06 10:41:20 +00:00
if ( ! $parent_data [ 'width' ] )
2013-11-12 17:43:30 +00:00
$parent_data [ 'width' ] = wc_format_localized_decimal ( 0 );
2013-08-06 10:41:20 +00:00
if ( ! $parent_data [ 'height' ] )
2013-11-12 17:43:30 +00:00
$parent_data [ 'height' ] = wc_format_localized_decimal ( 0 );
2013-08-06 10:41:20 +00:00
// Get variations
$args = array (
'post_type' => 'product_variation' ,
'post_status' => array ( 'private' , 'publish' ),
'numberposts' => - 1 ,
'orderby' => 'menu_order' ,
'order' => 'asc' ,
'post_parent' => $post -> ID
);
$variations = get_posts ( $args );
$loop = 0 ;
if ( $variations ) foreach ( $variations as $variation ) {
$variation_id = absint ( $variation -> ID );
$variation_post_status = esc_attr ( $variation -> post_status );
$variation_data = get_post_meta ( $variation_id );
$variation_data [ 'variation_post_id' ] = $variation_id ;
// Grab shipping classes
$shipping_classes = get_the_terms ( $variation_id , 'product_shipping_class' );
$shipping_class = ( $shipping_classes && ! is_wp_error ( $shipping_classes ) ) ? current ( $shipping_classes ) -> term_id : '' ;
$variation_fields = array (
'_sku' ,
'_stock' ,
'_regular_price' ,
'_sale_price' ,
'_weight' ,
'_length' ,
'_width' ,
'_height' ,
'_download_limit' ,
'_download_expiry' ,
2013-09-20 16:01:09 +00:00
'_downloadable_files' ,
2013-08-06 10:41:20 +00:00
'_downloadable' ,
'_virtual' ,
'_thumbnail_id' ,
'_sale_price_dates_from' ,
2014-06-19 15:47:04 +00:00
'_sale_price_dates_to' ,
2014-06-24 12:02:09 +00:00
'_manage_stock' ,
'_stock_status'
2013-08-06 10:41:20 +00:00
);
2014-06-19 15:47:04 +00:00
foreach ( $variation_fields as $field ) {
2013-09-20 16:01:09 +00:00
$$field = isset ( $variation_data [ $field ][ 0 ] ) ? maybe_unserialize ( $variation_data [ $field ][ 0 ] ) : '' ;
2014-06-19 15:47:04 +00:00
}
2014-04-22 01:13:13 +00:00
$_backorders = isset ( $variation_data [ '_backorders' ][ 0 ] ) ? $variation_data [ '_backorders' ][ 0 ] : null ;
2014-06-24 12:02:09 +00:00
$_tax_class = isset ( $variation_data [ '_tax_class' ][ 0 ] ) ? $variation_data [ '_tax_class' ][ 0 ] : null ;
$image_id = absint ( $_thumbnail_id );
$image = $image_id ? wp_get_attachment_thumb_url ( $image_id ) : '' ;
2013-11-19 11:22:59 +00:00
2013-11-12 17:43:30 +00:00
// Locale formatting
$_regular_price = wc_format_localized_price ( $_regular_price );
$_sale_price = wc_format_localized_price ( $_sale_price );
$_weight = wc_format_localized_decimal ( $_weight );
$_length = wc_format_localized_decimal ( $_length );
$_width = wc_format_localized_decimal ( $_width );
$_height = wc_format_localized_decimal ( $_height );
2013-08-06 10:41:20 +00:00
2014-06-19 15:47:04 +00:00
// Stock BW compat
if ( $_stock !== '' ) {
$_manage_stock = 'yes' ;
}
2013-08-06 10:41:20 +00:00
include ( 'views/html-variation-admin.php' );
$loop ++ ;
}
?>
</ div >
< p class = " toolbar " >
< button type = " button " class = " button button-primary add_variation " < ? php disabled ( $variation_attribute_found , false ); ?> ><?php _e( 'Add Variation', 'woocommerce' ); ?></button>
< button type = " button " class = " button link_all_variations " < ? php disabled ( $variation_attribute_found , false ); ?> ><?php _e( 'Link all variations', 'woocommerce' ); ?></button>
2014-05-12 14:39:09 +00:00
< strong >< ? php _e ( 'Defaults' , 'woocommerce' ); ?> : <span class="tips" data-tip="<?php _e( 'These are the attributes that will be pre-selected on the frontend.', 'woocommerce' ); ?>">[?]</span></strong>
2013-08-06 10:41:20 +00:00
< ? php
$default_attributes = maybe_unserialize ( get_post_meta ( $post -> ID , '_default_attributes' , true ) );
foreach ( $attributes as $attribute ) {
// Only deal with attributes that are variations
if ( ! $attribute [ 'is_variation' ] )
continue ;
// Get current value for variation (if set)
$variation_selected_value = isset ( $default_attributes [ sanitize_title ( $attribute [ 'name' ] ) ] ) ? $default_attributes [ sanitize_title ( $attribute [ 'name' ] ) ] : '' ;
// Name will be something like attribute_pa_color
2013-09-12 13:41:02 +00:00
echo '<select name="default_attribute_' . sanitize_title ( $attribute [ 'name' ] ) . '"><option value="">' . __ ( 'No default' , 'woocommerce' ) . ' ' . esc_html ( wc_attribute_label ( $attribute [ 'name' ] ) ) . '…</option>' ;
2013-08-06 10:41:20 +00:00
// Get terms for attribute taxonomy or value if its a custom attribute
if ( $attribute [ 'is_taxonomy' ] ) {
$post_terms = wp_get_post_terms ( $post -> ID , $attribute [ 'name' ] );
foreach ( $post_terms as $term )
echo '<option ' . selected ( $variation_selected_value , $term -> slug , false ) . ' value="' . esc_attr ( $term -> slug ) . '">' . apply_filters ( 'woocommerce_variation_option_name' , esc_html ( $term -> name ) ) . '</option>' ;
} else {
2013-10-24 18:36:22 +00:00
$options = array_map ( 'trim' , explode ( WC_DELIMITER , $attribute [ 'value' ] ) );
2013-08-06 10:41:20 +00:00
foreach ( $options as $option )
echo '<option ' . selected ( sanitize_title ( $variation_selected_value ), sanitize_title ( $option ), false ) . ' value="' . esc_attr ( sanitize_title ( $option ) ) . '">' . esc_html ( apply_filters ( 'woocommerce_variation_option_name' , $option ) ) . '</option>' ;
}
echo '</select>' ;
}
?>
</ p >
< ? php endif ; ?>
</ div ></ div >
< ? php
}
/**
* Save meta box data
*/
public static function save ( $post_id , $post ) {
global $wpdb ;
// Add any default post meta
add_post_meta ( $post_id , 'total_sales' , '0' , true );
// Get types
$product_type = empty ( $_POST [ 'product-type' ] ) ? 'simple' : sanitize_title ( stripslashes ( $_POST [ 'product-type' ] ) );
$is_downloadable = isset ( $_POST [ '_downloadable' ] ) ? 'yes' : 'no' ;
$is_virtual = isset ( $_POST [ '_virtual' ] ) ? 'yes' : 'no' ;
// Product type + Downloadable/Virtual
wp_set_object_terms ( $post_id , $product_type , 'product_type' );
update_post_meta ( $post_id , '_downloadable' , $is_downloadable );
update_post_meta ( $post_id , '_virtual' , $is_virtual );
// Update post meta
2013-10-01 16:54:29 +00:00
if ( isset ( $_POST [ '_regular_price' ] ) )
2013-11-25 13:34:21 +00:00
update_post_meta ( $post_id , '_regular_price' , ( $_POST [ '_regular_price' ] === '' ) ? '' : wc_format_decimal ( $_POST [ '_regular_price' ] ) );
2013-10-01 16:54:29 +00:00
if ( isset ( $_POST [ '_sale_price' ] ) )
2013-11-25 13:34:21 +00:00
update_post_meta ( $post_id , '_sale_price' , ( $_POST [ '_sale_price' ] === '' ? '' : wc_format_decimal ( $_POST [ '_sale_price' ] ) ) );
2013-08-06 10:41:20 +00:00
if ( isset ( $_POST [ '_tax_status' ] ) ) update_post_meta ( $post_id , '_tax_status' , stripslashes ( $_POST [ '_tax_status' ] ) );
if ( isset ( $_POST [ '_tax_class' ] ) ) update_post_meta ( $post_id , '_tax_class' , stripslashes ( $_POST [ '_tax_class' ] ) );
if ( isset ( $_POST [ '_purchase_note' ] ) ) update_post_meta ( $post_id , '_purchase_note' , stripslashes ( $_POST [ '_purchase_note' ] ) );
2014-06-19 10:33:55 +00:00
// Featured
if ( update_post_meta ( $post_id , '_featured' , isset ( $_POST [ '_featured' ] ) ? 'yes' : 'no' ) ) {
delete_transient ( 'wc_featured_products' );
}
2013-08-06 10:41:20 +00:00
// Dimensions
if ( $is_virtual == 'no' ) {
2013-10-01 16:54:29 +00:00
if ( isset ( $_POST [ '_weight' ] ) )
2013-11-25 13:34:21 +00:00
update_post_meta ( $post_id , '_weight' , ( $_POST [ '_weight' ] === '' ) ? '' : wc_format_decimal ( $_POST [ '_weight' ] ) );
2013-10-01 16:54:29 +00:00
if ( isset ( $_POST [ '_length' ] ) )
2013-11-25 13:34:21 +00:00
update_post_meta ( $post_id , '_length' , ( $_POST [ '_length' ] === '' ) ? '' : wc_format_decimal ( $_POST [ '_length' ] ) );
2013-10-01 16:54:29 +00:00
if ( isset ( $_POST [ '_width' ] ) )
2013-11-25 13:34:21 +00:00
update_post_meta ( $post_id , '_width' , ( $_POST [ '_width' ] === '' ) ? '' : wc_format_decimal ( $_POST [ '_width' ] ) );
2013-10-01 16:54:29 +00:00
if ( isset ( $_POST [ '_height' ] ) )
2013-11-25 13:34:21 +00:00
update_post_meta ( $post_id , '_height' , ( $_POST [ '_height' ] === '' ) ? '' : wc_format_decimal ( $_POST [ '_height' ] ) );
2013-10-01 16:54:29 +00:00
2013-08-06 10:41:20 +00:00
} else {
update_post_meta ( $post_id , '_weight' , '' );
update_post_meta ( $post_id , '_length' , '' );
update_post_meta ( $post_id , '_width' , '' );
update_post_meta ( $post_id , '_height' , '' );
}
// Save shipping class
$product_shipping_class = $_POST [ 'product_shipping_class' ] > 0 && $product_type != 'external' ? absint ( $_POST [ 'product_shipping_class' ] ) : '' ;
wp_set_object_terms ( $post_id , $product_shipping_class , 'product_shipping_class' );
// Unique SKU
2013-10-14 10:15:44 +00:00
$sku = get_post_meta ( $post_id , '_sku' , true );
2013-11-25 13:34:21 +00:00
$new_sku = wc_clean ( stripslashes ( $_POST [ '_sku' ] ) );
2013-08-06 10:41:20 +00:00
if ( $new_sku == '' ) {
update_post_meta ( $post_id , '_sku' , '' );
} elseif ( $new_sku !== $sku ) {
if ( ! empty ( $new_sku ) ) {
if (
$wpdb -> get_var ( $wpdb -> prepare ( "
SELECT $wpdb -> posts . ID
FROM $wpdb -> posts
LEFT JOIN $wpdb -> postmeta ON ( $wpdb -> posts . ID = $wpdb -> postmeta . post_id )
WHERE $wpdb -> posts . post_type = 'product'
AND $wpdb -> posts . post_status = 'publish'
AND $wpdb -> postmeta . meta_key = '_sku' AND $wpdb -> postmeta . meta_value = '%s'
" , $new_sku ) )
) {
WC_Admin_Meta_Boxes :: add_error ( __ ( 'Product SKU must be unique.' , 'woocommerce' ) );
} else {
update_post_meta ( $post_id , '_sku' , $new_sku );
}
} else {
update_post_meta ( $post_id , '_sku' , '' );
}
}
// Save Attributes
$attributes = array ();
if ( isset ( $_POST [ 'attribute_names' ] ) && isset ( $_POST [ 'attribute_values' ] ) ) {
$attribute_names = $_POST [ 'attribute_names' ];
$attribute_values = $_POST [ 'attribute_values' ];
if ( isset ( $_POST [ 'attribute_visibility' ] ) )
$attribute_visibility = $_POST [ 'attribute_visibility' ];
if ( isset ( $_POST [ 'attribute_variation' ] ) )
$attribute_variation = $_POST [ 'attribute_variation' ];
$attribute_is_taxonomy = $_POST [ 'attribute_is_taxonomy' ];
$attribute_position = $_POST [ 'attribute_position' ];
$attribute_names_count = sizeof ( $attribute_names );
for ( $i = 0 ; $i < $attribute_names_count ; $i ++ ) {
if ( ! $attribute_names [ $i ] )
continue ;
$is_visible = isset ( $attribute_visibility [ $i ] ) ? 1 : 0 ;
$is_variation = isset ( $attribute_variation [ $i ] ) ? 1 : 0 ;
$is_taxonomy = $attribute_is_taxonomy [ $i ] ? 1 : 0 ;
if ( $is_taxonomy ) {
if ( isset ( $attribute_values [ $i ] ) ) {
// Select based attributes - Format values (posted values are slugs)
if ( is_array ( $attribute_values [ $i ] ) ) {
$values = array_map ( 'sanitize_title' , $attribute_values [ $i ] );
// Text based attributes - Posted values are term names - don't change to slugs
} else {
2013-10-24 18:36:22 +00:00
$values = array_map ( 'stripslashes' , array_map ( 'strip_tags' , explode ( WC_DELIMITER , $attribute_values [ $i ] ) ) );
2013-08-06 10:41:20 +00:00
}
// Remove empty items in the array
2013-08-26 10:21:11 +00:00
$values = array_filter ( $values , 'strlen' );
2013-08-06 10:41:20 +00:00
} else {
$values = array ();
}
// Update post terms
if ( taxonomy_exists ( $attribute_names [ $i ] ) )
wp_set_object_terms ( $post_id , $values , $attribute_names [ $i ] );
if ( $values ) {
// Add attribute to array, but don't set values
$attributes [ sanitize_title ( $attribute_names [ $i ] ) ] = array (
2013-11-25 13:34:21 +00:00
'name' => wc_clean ( $attribute_names [ $i ] ),
2013-08-06 10:41:20 +00:00
'value' => '' ,
'position' => $attribute_position [ $i ],
'is_visible' => $is_visible ,
'is_variation' => $is_variation ,
'is_taxonomy' => $is_taxonomy
);
}
} elseif ( isset ( $attribute_values [ $i ] ) ) {
// Text based, separate by pipe
2013-11-25 13:34:21 +00:00
$values = implode ( ' ' . WC_DELIMITER . ' ' , array_map ( 'wc_clean' , explode ( WC_DELIMITER , $attribute_values [ $i ] ) ) );
2013-08-06 10:41:20 +00:00
// Custom attribute - Add attribute to array and set the values
$attributes [ sanitize_title ( $attribute_names [ $i ] ) ] = array (
2013-11-25 13:34:21 +00:00
'name' => wc_clean ( $attribute_names [ $i ] ),
2013-08-06 10:41:20 +00:00
'value' => $values ,
'position' => $attribute_position [ $i ],
'is_visible' => $is_visible ,
'is_variation' => $is_variation ,
'is_taxonomy' => $is_taxonomy
);
}
}
}
if ( ! function_exists ( 'attributes_cmp' ) ) {
function attributes_cmp ( $a , $b ) {
if ( $a [ 'position' ] == $b [ 'position' ] ) return 0 ;
return ( $a [ 'position' ] < $b [ 'position' ] ) ? - 1 : 1 ;
}
}
uasort ( $attributes , 'attributes_cmp' );
update_post_meta ( $post_id , '_product_attributes' , $attributes );
// Sales and prices
if ( in_array ( $product_type , array ( 'variable' , 'grouped' ) ) ) {
// Variable and grouped products have no prices
update_post_meta ( $post_id , '_regular_price' , '' );
update_post_meta ( $post_id , '_sale_price' , '' );
update_post_meta ( $post_id , '_sale_price_dates_from' , '' );
update_post_meta ( $post_id , '_sale_price_dates_to' , '' );
update_post_meta ( $post_id , '_price' , '' );
} else {
$date_from = isset ( $_POST [ '_sale_price_dates_from' ] ) ? $_POST [ '_sale_price_dates_from' ] : '' ;
$date_to = isset ( $_POST [ '_sale_price_dates_to' ] ) ? $_POST [ '_sale_price_dates_to' ] : '' ;
// Dates
if ( $date_from )
update_post_meta ( $post_id , '_sale_price_dates_from' , strtotime ( $date_from ) );
else
update_post_meta ( $post_id , '_sale_price_dates_from' , '' );
if ( $date_to )
update_post_meta ( $post_id , '_sale_price_dates_to' , strtotime ( $date_to ) );
else
update_post_meta ( $post_id , '_sale_price_dates_to' , '' );
if ( $date_to && ! $date_from )
update_post_meta ( $post_id , '_sale_price_dates_from' , strtotime ( 'NOW' , current_time ( 'timestamp' ) ) );
// Update price if on sale
2013-10-02 11:50:03 +00:00
if ( $_POST [ '_sale_price' ] !== '' && $date_to == '' && $date_from == '' )
2013-11-25 13:34:21 +00:00
update_post_meta ( $post_id , '_price' , wc_format_decimal ( $_POST [ '_sale_price' ] ) );
2013-08-06 10:41:20 +00:00
else
2013-11-25 13:34:21 +00:00
update_post_meta ( $post_id , '_price' , ( $_POST [ '_regular_price' ] === '' ) ? '' : wc_format_decimal ( $_POST [ '_regular_price' ] ) );
2013-08-06 10:41:20 +00:00
2013-10-02 11:50:03 +00:00
if ( $_POST [ '_sale_price' ] !== '' && $date_from && strtotime ( $date_from ) < strtotime ( 'NOW' , current_time ( 'timestamp' ) ) )
2013-11-25 13:34:21 +00:00
update_post_meta ( $post_id , '_price' , wc_format_decimal ( $_POST [ '_sale_price' ] ) );
2013-08-06 10:41:20 +00:00
if ( $date_to && strtotime ( $date_to ) < strtotime ( 'NOW' , current_time ( 'timestamp' ) ) ) {
2013-11-25 13:34:21 +00:00
update_post_meta ( $post_id , '_price' , ( $_POST [ '_regular_price' ] === '' ) ? '' : wc_format_decimal ( $_POST [ '_regular_price' ] ) );
2013-11-12 17:43:30 +00:00
update_post_meta ( $post_id , '_sale_price_dates_from' , '' );
update_post_meta ( $post_id , '_sale_price_dates_to' , '' );
2013-08-06 10:41:20 +00:00
}
}
// Update parent if grouped so price sorting works and stays in sync with the cheapest child
if ( $post -> post_parent > 0 || $product_type == 'grouped' || $_POST [ 'previous_parent_id' ] > 0 ) {
$clear_parent_ids = array ();
if ( $post -> post_parent > 0 )
$clear_parent_ids [] = $post -> post_parent ;
if ( $product_type == 'grouped' )
$clear_parent_ids [] = $post_id ;
if ( $_POST [ 'previous_parent_id' ] > 0 )
$clear_parent_ids [] = absint ( $_POST [ 'previous_parent_id' ] );
if ( $clear_parent_ids ) {
foreach ( $clear_parent_ids as $clear_id ) {
$children_by_price = get_posts ( array (
'post_parent' => $clear_id ,
'orderby' => 'meta_value_num' ,
'order' => 'asc' ,
'meta_key' => '_price' ,
'posts_per_page' => 1 ,
'post_type' => 'product' ,
'fields' => 'ids'
) );
if ( $children_by_price ) {
foreach ( $children_by_price as $child ) {
$child_price = get_post_meta ( $child , '_price' , true );
update_post_meta ( $clear_id , '_price' , $child_price );
}
}
}
}
}
2013-09-24 15:21:12 +00:00
// Sold Individually
2013-08-06 10:41:20 +00:00
if ( ! empty ( $_POST [ '_sold_individually' ] ) ) {
update_post_meta ( $post_id , '_sold_individually' , 'yes' );
} else {
update_post_meta ( $post_id , '_sold_individually' , '' );
}
// Stock Data
2014-06-19 15:47:04 +00:00
if ( 'yes' === get_option ( 'woocommerce_manage_stock' ) ) {
2013-08-06 10:41:20 +00:00
2014-06-19 15:47:04 +00:00
$manage_stock = 'no' ;
$backorders = 'no' ;
$stock = '' ;
$stock_status = wc_clean ( $_POST [ '_stock_status' ] );
2013-08-06 10:41:20 +00:00
2014-06-19 15:47:04 +00:00
if ( 'external' === $product_type ) {
2013-08-13 15:56:09 +00:00
2014-06-19 15:47:04 +00:00
$stock_status = 'instock' ;
2013-08-06 10:41:20 +00:00
2014-06-19 15:47:04 +00:00
} elseif ( 'variable' === $product_type ) {
2013-08-06 10:41:20 +00:00
2014-06-24 12:02:09 +00:00
// Stock status is always determined by children so sync later
$stock_status = '' ;
if ( ! empty ( $_POST [ '_manage_stock' ] ) ) {
2014-06-19 15:47:04 +00:00
$manage_stock = 'yes' ;
$backorders = wc_clean ( $_POST [ '_backorders' ] );
}
2013-08-13 15:56:09 +00:00
2014-06-19 15:47:04 +00:00
} elseif ( 'grouped' !== $product_type && ! empty ( $_POST [ '_manage_stock' ] ) ) {
$manage_stock = 'yes' ;
$backorders = wc_clean ( $_POST [ '_backorders' ] );
}
2013-08-06 10:41:20 +00:00
2014-06-19 15:47:04 +00:00
update_post_meta ( $post_id , '_manage_stock' , $manage_stock );
update_post_meta ( $post_id , '_backorders' , $backorders );
2013-08-06 10:41:20 +00:00
2014-06-24 12:02:09 +00:00
if ( $stock_status ) {
wc_update_product_stock_status ( $post_id , $stock_status );
}
2013-08-06 10:41:20 +00:00
2014-06-19 15:47:04 +00:00
if ( ! empty ( $_POST [ '_manage_stock' ] ) ) {
2013-08-13 15:56:09 +00:00
wc_update_product_stock ( $post_id , intval ( $_POST [ '_stock' ] ) );
2013-08-06 10:41:20 +00:00
} else {
2013-08-13 15:56:09 +00:00
update_post_meta ( $post_id , '_stock' , '' );
2013-08-06 10:41:20 +00:00
}
} else {
2013-11-25 13:34:21 +00:00
wc_update_product_stock_status ( $post_id , wc_clean ( $_POST [ '_stock_status' ] ) );
2013-08-06 10:41:20 +00:00
}
// Upsells
if ( isset ( $_POST [ 'upsell_ids' ] ) ) {
$upsells = array ();
2014-06-19 15:47:04 +00:00
$ids = $_POST [ 'upsell_ids' ];
foreach ( $ids as $id ) {
if ( $id && $id > 0 ) {
2013-08-06 10:41:20 +00:00
$upsells [] = $id ;
2014-06-19 15:47:04 +00:00
}
}
2013-08-06 10:41:20 +00:00
update_post_meta ( $post_id , '_upsell_ids' , $upsells );
} else {
delete_post_meta ( $post_id , '_upsell_ids' );
}
// Cross sells
if ( isset ( $_POST [ 'crosssell_ids' ] ) ) {
$crosssells = array ();
$ids = $_POST [ 'crosssell_ids' ];
foreach ( $ids as $id )
if ( $id && $id > 0 )
$crosssells [] = $id ;
update_post_meta ( $post_id , '_crosssell_ids' , $crosssells );
} else {
delete_post_meta ( $post_id , '_crosssell_ids' );
}
// Downloadable options
if ( $is_downloadable == 'yes' ) {
$_download_limit = absint ( $_POST [ '_download_limit' ] );
2014-04-24 15:00:17 +00:00
if ( ! $_download_limit ) {
2013-08-06 10:41:20 +00:00
$_download_limit = '' ; // 0 or blank = unlimited
2014-04-24 15:00:17 +00:00
}
2013-08-06 10:41:20 +00:00
$_download_expiry = absint ( $_POST [ '_download_expiry' ] );
2014-04-24 15:00:17 +00:00
if ( ! $_download_expiry ) {
2013-08-06 10:41:20 +00:00
$_download_expiry = '' ; // 0 or blank = unlimited
2014-04-24 15:00:17 +00:00
}
2013-08-06 10:41:20 +00:00
// file paths will be stored in an array keyed off md5(file path)
2014-04-24 15:00:17 +00:00
$files = array ();
2013-09-20 16:01:09 +00:00
2014-04-24 15:00:17 +00:00
if ( isset ( $_POST [ '_wc_file_urls' ] ) ) {
2013-11-25 13:34:21 +00:00
$file_names = isset ( $_POST [ '_wc_file_names' ] ) ? array_map ( 'wc_clean' , $_POST [ '_wc_file_names' ] ) : array ();
2014-01-21 11:09:27 +00:00
$file_urls = isset ( $_POST [ '_wc_file_urls' ] ) ? array_map ( 'wc_clean' , $_POST [ '_wc_file_urls' ] ) : array ();
2013-09-20 16:01:09 +00:00
$file_url_size = sizeof ( $file_urls );
for ( $i = 0 ; $i < $file_url_size ; $i ++ ) {
2014-04-24 15:00:17 +00:00
if ( ! empty ( $file_urls [ $i ] ) ) {
2013-09-20 16:01:09 +00:00
$files [ md5 ( $file_urls [ $i ] ) ] = array (
'name' => $file_names [ $i ],
'file' => $file_urls [ $i ]
);
2014-04-24 15:00:17 +00:00
}
2013-08-06 10:41:20 +00:00
}
}
2013-08-20 12:52:06 +00:00
2014-04-24 15:00:17 +00:00
// grant permission to any newly added files on any existing orders for this product prior to saving
do_action ( 'woocommerce_process_product_file_download_paths' , $post_id , 0 , $files );
update_post_meta ( $post_id , '_downloadable_files' , $files );
2013-08-20 12:52:06 +00:00
update_post_meta ( $post_id , '_download_limit' , $_download_limit );
update_post_meta ( $post_id , '_download_expiry' , $_download_expiry );
if ( isset ( $_POST [ '_download_type' ] ) )
2013-11-25 13:34:21 +00:00
update_post_meta ( $post_id , '_download_type' , wc_clean ( $_POST [ '_download_type' ] ) );
2013-08-06 10:41:20 +00:00
}
// Product url
if ( $product_type == 'external' ) {
if ( isset ( $_POST [ '_product_url' ] ) )
update_post_meta ( $post_id , '_product_url' , esc_attr ( $_POST [ '_product_url' ] ) );
if ( isset ( $_POST [ '_button_text' ] ) )
update_post_meta ( $post_id , '_button_text' , esc_attr ( $_POST [ '_button_text' ] ) );
}
// Save variations
2014-06-19 11:25:07 +00:00
if ( $product_type == 'variable' ) {
2013-09-25 11:35:06 +00:00
self :: save_variations ( $post_id , $post );
2014-06-19 11:25:07 +00:00
}
2013-08-06 10:41:20 +00:00
// Do action for product type
do_action ( 'woocommerce_process_product_meta_' . $product_type , $post_id );
// Clear cache/transients
2013-08-09 16:11:15 +00:00
wc_delete_product_transients ( $post_id );
2013-08-06 10:41:20 +00:00
}
/**
* Save meta box data
*/
public static function save_variations ( $post_id , $post ) {
2014-06-19 15:47:04 +00:00
global $wpdb ;
2013-08-06 10:41:20 +00:00
2013-08-13 15:56:09 +00:00
$attributes = ( array ) maybe_unserialize ( get_post_meta ( $post_id , '_product_attributes' , true ) );
2013-08-06 10:41:20 +00:00
if ( isset ( $_POST [ 'variable_sku' ] ) ) {
2014-06-19 15:47:04 +00:00
$variable_post_id = $_POST [ 'variable_post_id' ];
$variable_sku = $_POST [ 'variable_sku' ];
$variable_regular_price = $_POST [ 'variable_regular_price' ];
$variable_sale_price = $_POST [ 'variable_sale_price' ];
$upload_image_id = $_POST [ 'upload_image_id' ];
$variable_download_limit = $_POST [ 'variable_download_limit' ];
$variable_download_expiry = $_POST [ 'variable_download_expiry' ];
$variable_shipping_class = $_POST [ 'variable_shipping_class' ];
$variable_tax_class = isset ( $_POST [ 'variable_tax_class' ] ) ? $_POST [ 'variable_tax_class' ] : array ();
$variable_menu_order = $_POST [ 'variation_menu_order' ];
$variable_sale_price_dates_from = $_POST [ 'variable_sale_price_dates_from' ];
$variable_sale_price_dates_to = $_POST [ 'variable_sale_price_dates_to' ];
$variable_weight = isset ( $_POST [ 'variable_weight' ] ) ? $_POST [ 'variable_weight' ] : array ();
$variable_length = isset ( $_POST [ 'variable_length' ] ) ? $_POST [ 'variable_length' ] : array ();
$variable_width = isset ( $_POST [ 'variable_width' ] ) ? $_POST [ 'variable_width' ] : array ();
$variable_height = isset ( $_POST [ 'variable_height' ] ) ? $_POST [ 'variable_height' ] : array ();
$variable_enabled = isset ( $_POST [ 'variable_enabled' ] ) ? $_POST [ 'variable_enabled' ] : array ();
$variable_is_virtual = isset ( $_POST [ 'variable_is_virtual' ] ) ? $_POST [ 'variable_is_virtual' ] : array ();
$variable_is_downloadable = isset ( $_POST [ 'variable_is_downloadable' ] ) ? $_POST [ 'variable_is_downloadable' ] : array ();
$variable_manage_stock = isset ( $_POST [ 'variable_manage_stock' ] ) ? $_POST [ 'variable_manage_stock' ] : array ();
$variable_stock = isset ( $_POST [ 'variable_stock' ] ) ? $_POST [ 'variable_stock' ] : array ();
$variable_backorders = isset ( $_POST [ 'variable_backorders' ] ) ? $_POST [ 'variable_backorders' ] : array ();
$variable_stock_status = isset ( $_POST [ 'variable_stock_status' ] ) ? $_POST [ 'variable_stock_status' ] : array ();
2013-08-06 10:41:20 +00:00
$max_loop = max ( array_keys ( $_POST [ 'variable_post_id' ] ) );
for ( $i = 0 ; $i <= $max_loop ; $i ++ ) {
2014-06-19 15:47:04 +00:00
if ( ! isset ( $variable_post_id [ $i ] ) ) {
2013-08-06 10:41:20 +00:00
continue ;
2014-06-19 15:47:04 +00:00
}
2013-08-06 10:41:20 +00:00
2014-06-19 15:47:04 +00:00
$variation_id = absint ( $variable_post_id [ $i ] );
// Checkboxes
2014-05-06 09:47:23 +00:00
$is_virtual = isset ( $variable_is_virtual [ $i ] ) ? 'yes' : 'no' ;
$is_downloadable = isset ( $variable_is_downloadable [ $i ] ) ? 'yes' : 'no' ;
$post_status = isset ( $variable_enabled [ $i ] ) ? 'publish' : 'private' ;
2014-06-19 15:47:04 +00:00
$manage_stock = isset ( $variable_manage_stock [ $i ] ) ? 'yes' : 'no' ;
2014-05-06 09:47:23 +00:00
2013-08-06 10:41:20 +00:00
// Generate a useful post title
$variation_post_title = sprintf ( __ ( 'Variation #%s of %s' , 'woocommerce' ), absint ( $variation_id ), esc_html ( get_the_title ( $post_id ) ) );
// Update or Add post
if ( ! $variation_id ) {
$variation = array (
'post_title' => $variation_post_title ,
'post_content' => '' ,
'post_status' => $post_status ,
'post_author' => get_current_user_id (),
'post_parent' => $post_id ,
'post_type' => 'product_variation' ,
'menu_order' => $variable_menu_order [ $i ]
);
$variation_id = wp_insert_post ( $variation );
do_action ( 'woocommerce_create_product_variation' , $variation_id );
} else {
$wpdb -> update ( $wpdb -> posts , array ( 'post_status' => $post_status , 'post_title' => $variation_post_title , 'menu_order' => $variable_menu_order [ $i ] ), array ( 'ID' => $variation_id ) );
do_action ( 'woocommerce_update_product_variation' , $variation_id );
}
2014-05-06 09:47:23 +00:00
// Only continue if we have a variation ID
if ( ! $variation_id ) {
continue ;
}
2013-08-06 10:41:20 +00:00
// Update post meta
2013-11-25 13:34:21 +00:00
update_post_meta ( $variation_id , '_sku' , wc_clean ( $variable_sku [ $i ] ) );
2013-08-06 10:41:20 +00:00
update_post_meta ( $variation_id , '_thumbnail_id' , absint ( $upload_image_id [ $i ] ) );
2013-11-25 13:34:21 +00:00
update_post_meta ( $variation_id , '_virtual' , wc_clean ( $is_virtual ) );
update_post_meta ( $variation_id , '_downloadable' , wc_clean ( $is_downloadable ) );
2013-08-06 10:41:20 +00:00
2013-10-01 16:54:29 +00:00
if ( isset ( $variable_weight [ $i ] ) )
2013-11-25 13:34:21 +00:00
update_post_meta ( $variation_id , '_weight' , ( $variable_weight [ $i ] === '' ) ? '' : wc_format_decimal ( $variable_weight [ $i ] ) );
2013-10-01 16:54:29 +00:00
if ( isset ( $variable_length [ $i ] ) )
2013-11-25 13:34:21 +00:00
update_post_meta ( $variation_id , '_length' , ( $variable_length [ $i ] === '' ) ? '' : wc_format_decimal ( $variable_length [ $i ] ) );
2013-10-01 16:54:29 +00:00
if ( isset ( $variable_width [ $i ] ) )
2013-11-25 13:34:21 +00:00
update_post_meta ( $variation_id , '_width' , ( $variable_width [ $i ] === '' ) ? '' : wc_format_decimal ( $variable_width [ $i ] ) );
2013-10-01 16:54:29 +00:00
if ( isset ( $variable_height [ $i ] ) )
2013-11-25 13:34:21 +00:00
update_post_meta ( $variation_id , '_height' , ( $variable_height [ $i ] === '' ) ? '' : wc_format_decimal ( $variable_height [ $i ] ) );
2013-10-01 16:54:29 +00:00
2013-08-13 15:56:09 +00:00
// Stock handling
2014-06-19 15:47:04 +00:00
update_post_meta ( $variation_id , '_manage_stock' , $manage_stock );
2014-06-24 12:02:09 +00:00
// Only update stock status to user setting if changed by the user, but do so before looking at stock levels at variation level
if ( ! empty ( $variable_stock_status [ $i ] ) ) {
wc_update_product_stock_status ( $variation_id , $variable_stock_status [ $i ] );
}
2014-06-19 15:47:04 +00:00
2014-06-24 12:02:09 +00:00
if ( 'yes' === $manage_stock ) {
2014-06-19 15:47:04 +00:00
if ( isset ( $variable_backorders [ $i ] ) && $variable_backorders [ $i ] !== 'parent' ) {
update_post_meta ( $variation_id , '_backorders' , wc_clean ( $variable_backorders [ $i ] ) );
} else {
delete_post_meta ( $variation_id , '_backorders' );
}
2014-06-24 12:02:09 +00:00
wc_update_product_stock ( $variation_id , intval ( $variable_stock [ $i ] ) );
2014-05-06 09:47:23 +00:00
} else {
2014-04-22 01:13:13 +00:00
delete_post_meta ( $variation_id , '_backorders' );
2014-06-24 12:02:09 +00:00
delete_post_meta ( $variation_id , '_stock' );
2014-05-06 09:47:23 +00:00
}
2013-08-13 15:56:09 +00:00
2013-08-06 10:41:20 +00:00
// Price handling
2013-11-25 13:34:21 +00:00
$regular_price = wc_format_decimal ( $variable_regular_price [ $i ] );
2014-06-19 15:47:04 +00:00
$sale_price = $variable_sale_price [ $i ] === '' ? '' : wc_format_decimal ( $variable_sale_price [ $i ] );
2013-11-25 13:34:21 +00:00
$date_from = wc_clean ( $variable_sale_price_dates_from [ $i ] );
$date_to = wc_clean ( $variable_sale_price_dates_to [ $i ] );
2013-08-06 10:41:20 +00:00
update_post_meta ( $variation_id , '_regular_price' , $regular_price );
update_post_meta ( $variation_id , '_sale_price' , $sale_price );
// Save Dates
2014-06-19 15:47:04 +00:00
update_post_meta ( $variation_id , '_sale_price_dates_from' , $date_from ? strtotime ( $date_from ) : '' );
update_post_meta ( $variation_id , '_sale_price_dates_to' , $date_to ? strtotime ( $date_to ) : '' );
2013-08-06 10:41:20 +00:00
2014-06-19 15:47:04 +00:00
if ( $date_to && ! $date_from ) {
2013-08-06 10:41:20 +00:00
update_post_meta ( $variation_id , '_sale_price_dates_from' , strtotime ( 'NOW' , current_time ( 'timestamp' ) ) );
2014-06-19 15:47:04 +00:00
}
2013-08-06 10:41:20 +00:00
// Update price if on sale
2014-06-19 15:47:04 +00:00
if ( '' !== $sale_price && '' === $date_to && '' === $date_from ) {
2013-08-06 10:41:20 +00:00
update_post_meta ( $variation_id , '_price' , $sale_price );
2014-06-19 15:47:04 +00:00
} else {
2013-08-06 10:41:20 +00:00
update_post_meta ( $variation_id , '_price' , $regular_price );
2014-06-19 15:47:04 +00:00
}
2013-08-06 10:41:20 +00:00
2014-06-19 15:47:04 +00:00
if ( '' !== $sale_price && $date_from && strtotime ( $date_from ) < strtotime ( 'NOW' , current_time ( 'timestamp' ) ) ) {
2013-08-06 10:41:20 +00:00
update_post_meta ( $variation_id , '_price' , $sale_price );
2014-06-19 15:47:04 +00:00
}
2013-08-06 10:41:20 +00:00
if ( $date_to && strtotime ( $date_to ) < strtotime ( 'NOW' , current_time ( 'timestamp' ) ) ) {
update_post_meta ( $variation_id , '_price' , $regular_price );
update_post_meta ( $variation_id , '_sale_price_dates_from' , '' );
update_post_meta ( $variation_id , '_sale_price_dates_to' , '' );
}
2014-06-19 15:47:04 +00:00
if ( isset ( $variable_tax_class [ $i ] ) && $variable_tax_class [ $i ] !== 'parent' ) {
2013-11-25 13:34:21 +00:00
update_post_meta ( $variation_id , '_tax_class' , wc_clean ( $variable_tax_class [ $i ] ) );
2014-06-19 15:47:04 +00:00
} else {
2013-08-06 10:41:20 +00:00
delete_post_meta ( $variation_id , '_tax_class' );
2014-06-19 15:47:04 +00:00
}
2013-08-06 10:41:20 +00:00
if ( $is_downloadable == 'yes' ) {
2013-11-25 13:34:21 +00:00
update_post_meta ( $variation_id , '_download_limit' , wc_clean ( $variable_download_limit [ $i ] ) );
update_post_meta ( $variation_id , '_download_expiry' , wc_clean ( $variable_download_expiry [ $i ] ) );
2013-08-06 10:41:20 +00:00
2013-09-20 16:01:09 +00:00
$files = array ();
2013-11-25 13:34:21 +00:00
$file_names = isset ( $_POST [ '_wc_variation_file_names' ][ $variation_id ] ) ? array_map ( 'wc_clean' , $_POST [ '_wc_variation_file_names' ][ $variation_id ] ) : array ();
2014-02-12 19:17:09 +00:00
$file_urls = isset ( $_POST [ '_wc_variation_file_urls' ][ $variation_id ] ) ? array_map ( 'wc_clean' , $_POST [ '_wc_variation_file_urls' ][ $variation_id ] ) : array ();
2013-09-20 16:01:09 +00:00
$file_url_size = sizeof ( $file_urls );
2013-09-24 15:21:12 +00:00
for ( $ii = 0 ; $ii < $file_url_size ; $ii ++ ) {
2014-06-19 15:47:04 +00:00
if ( ! empty ( $file_urls [ $ii ] ) ) {
2013-09-24 15:21:12 +00:00
$files [ md5 ( $file_urls [ $ii ] ) ] = array (
'name' => $file_names [ $ii ],
'file' => $file_urls [ $ii ]
2013-09-20 16:01:09 +00:00
);
2014-06-19 15:47:04 +00:00
}
2013-08-06 10:41:20 +00:00
}
2013-09-20 16:01:09 +00:00
// grant permission to any newly added files on any existing orders for this product prior to saving
do_action ( 'woocommerce_process_product_file_download_paths' , $post_id , $variation_id , $files );
2013-08-06 10:41:20 +00:00
2013-09-20 16:01:09 +00:00
update_post_meta ( $variation_id , '_downloadable_files' , $files );
2013-08-06 10:41:20 +00:00
} else {
update_post_meta ( $variation_id , '_download_limit' , '' );
update_post_meta ( $variation_id , '_download_expiry' , '' );
2013-09-20 16:01:09 +00:00
update_post_meta ( $variation_id , '_downloadable_files' , '' );
2013-08-06 10:41:20 +00:00
}
// Save shipping class
2013-09-24 15:21:12 +00:00
$variable_shipping_class [ $i ] = ! empty ( $variable_shipping_class [ $i ] ) ? ( int ) $variable_shipping_class [ $i ] : '' ;
2013-08-06 10:41:20 +00:00
wp_set_object_terms ( $variation_id , $variable_shipping_class [ $i ], 'product_shipping_class' );
2014-05-06 09:47:23 +00:00
// Update taxonomies - don't use wc_clean as it destroys sanitized characters
$updated_attribute_keys = array ();
2013-08-06 10:41:20 +00:00
foreach ( $attributes as $attribute ) {
if ( $attribute [ 'is_variation' ] ) {
2014-05-06 09:47:23 +00:00
$attribute_key = 'attribute_' . sanitize_title ( $attribute [ 'name' ] );
$value = isset ( $_POST [ $attribute_key ][ $i ] ) ? sanitize_title ( stripslashes ( $_POST [ $attribute_key ][ $i ] ) ) : '' ;
$updated_attribute_keys [] = $attribute_key ;
update_post_meta ( $variation_id , $attribute_key , $value );
2013-08-06 10:41:20 +00:00
}
2014-05-06 09:47:23 +00:00
}
// Remove old taxonomies attributes so data is kept up to date - first get attribute key names
$delete_attribute_keys = $wpdb -> get_col ( $wpdb -> prepare ( " SELECT meta_key FROM { $wpdb -> postmeta } WHERE meta_key LIKE 'attribute_%%' AND meta_key NOT IN ( ' " . implode ( " ',' " , $updated_attribute_keys ) . " ' ) AND post_id = %d; " , $variation_id ) );
2013-08-06 10:41:20 +00:00
2014-05-06 09:47:23 +00:00
foreach ( $delete_attribute_keys as $key ) {
delete_post_meta ( $variation_id , $key );
2013-08-06 10:41:20 +00:00
}
2013-10-21 11:37:27 +00:00
do_action ( 'woocommerce_save_product_variation' , $variation_id , $i );
2013-09-24 15:21:12 +00:00
}
2013-08-06 10:41:20 +00:00
}
// Update parent if variable so price sorting works and stays in sync with the cheapest child
WC_Product_Variable :: sync ( $post_id );
// Update default attribute options setting
$default_attributes = array ();
foreach ( $attributes as $attribute ) {
if ( $attribute [ 'is_variation' ] ) {
2013-11-25 13:34:21 +00:00
// Don't use wc_clean as it destroys sanitized characters
2013-11-18 13:35:38 +00:00
if ( isset ( $_POST [ 'default_attribute_' . sanitize_title ( $attribute [ 'name' ] ) ] ) )
$value = sanitize_title ( trim ( stripslashes ( $_POST [ 'default_attribute_' . sanitize_title ( $attribute [ 'name' ] ) ] ) ) );
2013-11-19 11:22:59 +00:00
else
2013-11-18 13:35:38 +00:00
$value = '' ;
2013-08-06 10:41:20 +00:00
if ( $value )
$default_attributes [ sanitize_title ( $attribute [ 'name' ] ) ] = $value ;
}
}
update_post_meta ( $post_id , '_default_attributes' , $default_attributes );
}
2014-03-27 23:37:00 +00:00
}