2013-11-12 12:01:05 +00:00
< ? php
2014-05-28 13:52:50 +00:00
if ( ! defined ( 'ABSPATH' ) ) {
exit ; // Exit if accessed directly
}
2013-11-12 12:01:05 +00:00
/**
* Post Data
*
* Standardises certain post data on save .
*
* @ class WC_Post_Data
2014-05-28 13:52:50 +00:00
* @ version 2.2 . 0
2013-11-12 12:01:05 +00:00
* @ package WooCommerce / Classes / Data
* @ category Class
* @ author WooThemes
*/
class WC_Post_Data {
2014-05-28 13:52:50 +00:00
private static $editing_term = null ;
2013-11-12 20:25:23 +00:00
2013-11-12 12:01:05 +00:00
/**
2014-05-28 13:52:50 +00:00
* Hook in methods
2013-11-12 12:01:05 +00:00
*/
2014-05-28 13:52:50 +00:00
public static function init () {
2014-06-19 11:25:07 +00:00
add_action ( 'set_object_terms' , array ( __CLASS__ , 'set_object_terms' ), 10 , 6 );
add_action ( 'transition_post_status' , array ( __CLASS__ , 'transition_post_status' ), 10 , 3 );
add_action ( 'woocommerce_product_set_stock_status' , array ( __CLASS__ , 'delete_product_query_transients' ) );
add_action ( 'woocommerce_product_set_visibility' , array ( __CLASS__ , 'delete_product_query_transients' ) );
2014-05-28 13:52:50 +00:00
add_action ( 'edit_term' , array ( __CLASS__ , 'edit_term' ), 10 , 3 );
add_action ( 'edited_term' , array ( __CLASS__ , 'edited_term' ), 10 , 3 );
add_filter ( 'update_order_item_metadata' , array ( __CLASS__ , 'update_order_item_metadata' ), 10 , 5 );
add_filter ( 'update_post_metadata' , array ( __CLASS__ , 'update_post_metadata' ), 10 , 5 );
2014-06-04 10:16:19 +00:00
add_filter ( 'wp_insert_post_data' , array ( __CLASS__ , 'wp_insert_post_data' ) );
add_action ( 'pre_post_update' , array ( __CLASS__ , 'pre_post_update' ) );
2013-11-12 12:01:05 +00:00
}
2014-06-19 11:25:07 +00:00
/**
* Delete transients when terms are set
*/
public static function set_object_terms ( $object_id , $terms , $tt_ids , $taxonomy , $append , $old_tt_ids ) {
foreach ( array_merge ( $tt_ids , $old_tt_ids ) as $id ) {
delete_transient ( 'wc_ln_count_' . md5 ( sanitize_key ( $taxonomy ) . sanitize_key ( $id ) ) );
}
}
/**
* When a post status changes
*/
2014-06-19 15:32:52 +00:00
public static function transition_post_status ( $new_status , $old_status , $post ) {
2014-06-19 11:25:07 +00:00
if ( ( 'publish' === $new_status || 'publish' === $old_status ) && in_array ( $post -> post_type , array ( 'product' , 'product_variation' ) ) ) {
self :: delete_product_query_transients ();
}
}
/**
* Delete product view transients when needed e . g . when post status changes , or visibility / stock status is modified .
*/
public static function delete_product_query_transients () {
2014-07-03 11:59:54 +00:00
// Increments the transient version to invalidate cache
WC_Cache_Helper :: get_transient_version ( 'product_query' , true );
2014-06-19 11:25:07 +00:00
2014-07-03 11:59:54 +00:00
// If not using an external caching system, we can clear the transients out manually and avoid filling our DB
if ( ! wp_using_ext_object_cache () ) {
global $wpdb ;
2014-06-19 11:25:07 +00:00
2014-07-03 11:59:54 +00:00
$wpdb -> query ( "
DELETE FROM `$wpdb->options`
WHERE `option_name` LIKE ( '\_transient\_wc\_uf\_pid\_%' )
OR `option_name` LIKE ( '\_transient\_timeout\_wc\_uf\_pid\_%' )
OR `option_name` LIKE ( '\_transient\_wc\_products\_will\_display\_%' )
OR `option_name` LIKE ( '\_transient\_timeout\_wc\_products\_will\_display\_%' )
" );
}
2014-06-19 11:25:07 +00:00
}
2013-11-12 20:25:23 +00:00
/**
* When editing a term , check for product attributes
* @ param id $term_id
* @ param id $tt_id
* @ param string $taxonomy
*/
2014-05-28 13:52:50 +00:00
public static function edit_term ( $term_id , $tt_id , $taxonomy ) {
2013-11-12 20:25:23 +00:00
if ( strpos ( $taxonomy , 'pa_' ) === 0 ) {
2014-05-28 13:52:50 +00:00
self :: $editing_term = get_term_by ( 'id' , $term_id , $taxonomy );
2013-11-12 20:25:23 +00:00
} else {
2014-05-28 13:52:50 +00:00
self :: $editing_term = null ;
2013-11-12 20:25:23 +00:00
}
}
/**
* When a term is edited , check for product attributes and update variations
* @ param id $term_id
* @ param id $tt_id
* @ param string $taxonomy
*/
2014-05-28 13:52:50 +00:00
public static function edited_term ( $term_id , $tt_id , $taxonomy ) {
if ( ! is_null ( self :: $editing_term ) && strpos ( $taxonomy , 'pa_' ) === 0 ) {
2013-11-12 20:25:23 +00:00
$edited_term = get_term_by ( 'id' , $term_id , $taxonomy );
2014-05-28 13:52:50 +00:00
if ( $edited_term -> slug !== self :: $editing_term -> slug ) {
2013-11-12 20:25:23 +00:00
global $wpdb ;
2014-05-28 13:52:50 +00:00
$wpdb -> query ( $wpdb -> prepare ( " UPDATE { $wpdb -> postmeta } SET meta_value = %s WHERE meta_key = %s AND meta_value = %s; " , $edited_term -> slug , 'attribute_' . sanitize_title ( $taxonomy ), self :: $editing_term -> slug ) );
2013-11-12 20:25:23 +00:00
}
} else {
2014-05-28 13:52:50 +00:00
self :: $editing_term = null ;
2013-11-12 20:25:23 +00:00
}
}
2013-11-12 17:43:30 +00:00
/**
* Ensure floats are correctly converted to strings based on PHP locale
*
* @ param null $check
* @ param int $object_id
* @ param string $meta_key
* @ param mixed $meta_value
* @ param mixed $prev_value
* @ return null | bool
*/
2014-05-28 13:52:50 +00:00
public static function update_order_item_metadata ( $check , $object_id , $meta_key , $meta_value , $prev_value ) {
2013-11-12 17:43:30 +00:00
if ( ! empty ( $meta_value ) && is_float ( $meta_value ) ) {
// Convert float to string
$meta_value = wc_float_to_string ( $meta_value );
// Update meta value with new string
update_metadata ( 'order_item' , $object_id , $meta_key , $meta_value , $prev_value );
// Return
return true ;
}
return $check ;
}
2013-11-12 12:01:05 +00:00
/**
* Ensure floats are correctly converted to strings based on PHP locale
*
* @ param null $check
* @ param int $object_id
* @ param string $meta_key
* @ param mixed $meta_value
* @ param mixed $prev_value
* @ return null | bool
*/
2014-05-28 13:52:50 +00:00
public static function update_post_metadata ( $check , $object_id , $meta_key , $meta_value , $prev_value ) {
2014-07-11 11:43:42 +00:00
if ( ! empty ( $meta_value ) && is_float ( $meta_value ) && in_array ( get_post_type ( $object_id ), array_merge ( wc_get_order_types (), array ( 'shop_coupon' , 'product' , 'product_variation' ) ) ) ) {
2013-11-12 12:01:05 +00:00
// Convert float to string
2013-11-12 17:43:30 +00:00
$meta_value = wc_float_to_string ( $meta_value );
2013-11-12 12:01:05 +00:00
// Update meta value with new string
update_metadata ( 'post' , $object_id , $meta_key , $meta_value , $prev_value );
// Return
return true ;
}
return $check ;
}
2014-06-04 10:16:19 +00:00
/**
* Forces the order posts to have a title in a certain format ( containing the date ) .
* Forces certain product data based on the product ' s type , e . g . grouped products cannot have a parent .
*
* @ param array $data
* @ return array
*/
public static function wp_insert_post_data ( $data ) {
if ( 'shop_order' === $data [ 'post_type' ] && isset ( $data [ 'post_date' ] ) ) {
$order_title = 'Order' ;
if ( $data [ 'post_date' ] ) {
$order_title .= ' – ' . date_i18n ( 'F j, Y @ h:i A' , strtotime ( $data [ 'post_date' ] ) );
}
$data [ 'post_title' ] = $order_title ;
}
elseif ( 'product' === $data [ 'post_type' ] && isset ( $_POST [ 'product-type' ] ) ) {
$product_type = stripslashes ( $_POST [ 'product-type' ] );
switch ( $product_type ) {
case 'grouped' :
case 'variable' :
$data [ 'post_parent' ] = 0 ;
break ;
}
}
return $data ;
}
/**
* Some functions , like the term recount , require the visibility to be set prior . Lets save that here .
*
* @ param int $post_id
*/
2014-06-09 10:57:10 +00:00
public static function pre_post_update ( $post_id ) {
2014-06-04 10:16:19 +00:00
if ( isset ( $_POST [ '_visibility' ] ) ) {
2014-06-19 11:25:07 +00:00
if ( update_post_meta ( $post_id , '_visibility' , wc_clean ( $_POST [ '_visibility' ] ) ) ) {
do_action ( 'woocommerce_product_set_visibility' , $post_id , wc_clean ( $_POST [ '_visibility' ] ) );
}
2014-06-04 10:16:19 +00:00
}
if ( isset ( $_POST [ '_stock_status' ] ) ) {
wc_update_product_stock_status ( $post_id , wc_clean ( $_POST [ '_stock_status' ] ) );
}
}
2013-11-12 12:01:05 +00:00
}
2014-05-28 13:52:50 +00:00
WC_Post_Data :: init ();