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() { // Increments the transient version to invalidate cache WC_Cache_Helper::get_transient_version( 'product_query', true ); // 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; $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\_%') " ); } } /** * When editing a term, check for product attributes. * @param id $term_id * @param id $tt_id * @param string $taxonomy */ public static function edit_term( $term_id, $tt_id, $taxonomy ) { if ( strpos( $taxonomy, 'pa_' ) === 0 ) { self::$editing_term = get_term_by( 'id', $term_id, $taxonomy ); } else { self::$editing_term = null; } } /** * When a term is edited, check for product attributes and update variations. * @param id $term_id * @param id $tt_id * @param string $taxonomy */ public static function edited_term( $term_id, $tt_id, $taxonomy ) { if ( ! is_null( self::$editing_term ) && strpos( $taxonomy, 'pa_' ) === 0 ) { $edited_term = get_term_by( 'id', $term_id, $taxonomy ); if ( $edited_term->slug !== self::$editing_term->slug ) { global $wpdb; $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 ) ); } } else { self::$editing_term = null; } } /** * 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 */ public static function update_order_item_metadata( $check, $object_id, $meta_key, $meta_value, $prev_value ) { 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; } /** * 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 */ public static function update_post_metadata( $check, $object_id, $meta_key, $meta_value, $prev_value ) { 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' ) ) ) ) { // Convert float to string $meta_value = wc_float_to_string( $meta_value ); // Update meta value with new string update_metadata( 'post', $object_id, $meta_key, $meta_value, $prev_value ); // Return return true; } return $check; } /** * When setting stock level, ensure the stock status is kept in sync. * @param int $meta_id * @param int $object_id * @param string $meta_key * @param mixed $_meta_value */ public static function sync_product_stock_status( $meta_id, $object_id, $meta_key, $_meta_value ) { if ( '_stock' === $meta_key && 'product' !== get_post_type( $object_id ) ) { $product = wc_get_product( $object_id ); $product->check_stock_status(); } } /** * 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 */ public static function pre_post_update( $post_id ) { $product_type = empty( $_POST['product-type'] ) ? 'simple' : sanitize_title( stripslashes( $_POST['product-type'] ) ); if ( isset( $_POST['_visibility'] ) ) { if ( update_post_meta( $post_id, '_visibility', wc_clean( $_POST['_visibility'] ) ) ) { do_action( 'woocommerce_product_set_visibility', $post_id, wc_clean( $_POST['_visibility'] ) ); } } if ( isset( $_POST['_stock_status'] ) && 'variable' !== $product_type ) { wc_update_product_stock_status( $post_id, wc_clean( $_POST['_stock_status'] ) ); } } } WC_Post_Data::init();