2017-02-14 18:57:45 +00:00
|
|
|
<?php
|
2017-11-22 17:25:27 +00:00
|
|
|
/**
|
|
|
|
* Deprecated filter hooks
|
|
|
|
*
|
|
|
|
* @package WooCommerce\Abstracts
|
|
|
|
* @since 3.0.0
|
|
|
|
* @version 3.3.0
|
|
|
|
*/
|
|
|
|
|
2018-03-21 03:00:21 +00:00
|
|
|
defined( 'ABSPATH' ) || exit;
|
2017-02-14 18:57:45 +00:00
|
|
|
|
|
|
|
/**
|
2017-11-22 17:25:27 +00:00
|
|
|
* Handles deprecation notices and triggering of legacy filter hooks
|
2017-02-14 18:57:45 +00:00
|
|
|
*/
|
|
|
|
class WC_Deprecated_Filter_Hooks extends WC_Deprecated_Hooks {
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Array of deprecated hooks we need to handle.
|
2017-04-05 16:13:20 +00:00
|
|
|
* Format of 'new' => 'old'.
|
2017-02-14 18:57:45 +00:00
|
|
|
*
|
|
|
|
* @var array
|
|
|
|
*/
|
|
|
|
protected $deprecated_hooks = array(
|
2017-04-05 16:13:20 +00:00
|
|
|
'woocommerce_structured_data_order' => 'woocommerce_email_order_schema_markup',
|
|
|
|
'woocommerce_add_to_cart_fragments' => 'add_to_cart_fragments',
|
|
|
|
'woocommerce_add_to_cart_redirect' => 'add_to_cart_redirect',
|
|
|
|
'woocommerce_product_get_width' => 'woocommerce_product_width',
|
|
|
|
'woocommerce_product_get_height' => 'woocommerce_product_height',
|
|
|
|
'woocommerce_product_get_length' => 'woocommerce_product_length',
|
|
|
|
'woocommerce_product_get_weight' => 'woocommerce_product_weight',
|
|
|
|
'woocommerce_product_get_sku' => 'woocommerce_get_sku',
|
|
|
|
'woocommerce_product_get_price' => 'woocommerce_get_price',
|
|
|
|
'woocommerce_product_get_regular_price' => 'woocommerce_get_regular_price',
|
|
|
|
'woocommerce_product_get_sale_price' => 'woocommerce_get_sale_price',
|
|
|
|
'woocommerce_product_get_tax_class' => 'woocommerce_product_tax_class',
|
|
|
|
'woocommerce_product_get_stock_quantity' => 'woocommerce_get_stock_quantity',
|
|
|
|
'woocommerce_product_get_attributes' => 'woocommerce_get_product_attributes',
|
|
|
|
'woocommerce_product_get_gallery_image_ids' => 'woocommerce_product_gallery_attachment_ids',
|
|
|
|
'woocommerce_product_get_review_count' => 'woocommerce_product_review_count',
|
|
|
|
'woocommerce_product_get_downloads' => 'woocommerce_product_files',
|
|
|
|
'woocommerce_order_get_currency' => 'woocommerce_get_currency',
|
|
|
|
'woocommerce_order_get_discount_total' => 'woocommerce_order_amount_discount_total',
|
|
|
|
'woocommerce_order_get_discount_tax' => 'woocommerce_order_amount_discount_tax',
|
|
|
|
'woocommerce_order_get_shipping_total' => 'woocommerce_order_amount_shipping_total',
|
|
|
|
'woocommerce_order_get_shipping_tax' => 'woocommerce_order_amount_shipping_tax',
|
|
|
|
'woocommerce_order_get_cart_tax' => 'woocommerce_order_amount_cart_tax',
|
|
|
|
'woocommerce_order_get_total' => 'woocommerce_order_amount_total',
|
|
|
|
'woocommerce_order_get_total_tax' => 'woocommerce_order_amount_total_tax',
|
|
|
|
'woocommerce_order_get_total_discount' => 'woocommerce_order_amount_total_discount',
|
|
|
|
'woocommerce_order_get_subtotal' => 'woocommerce_order_amount_subtotal',
|
|
|
|
'woocommerce_order_get_tax_totals' => 'woocommerce_order_tax_totals',
|
|
|
|
'woocommerce_get_order_refund_get_amount' => 'woocommerce_refund_amount',
|
|
|
|
'woocommerce_get_order_refund_get_reason' => 'woocommerce_refund_reason',
|
|
|
|
'default_checkout_billing_country' => 'default_checkout_country',
|
|
|
|
'default_checkout_billing_state' => 'default_checkout_state',
|
|
|
|
'default_checkout_billing_postcode' => 'default_checkout_postcode',
|
|
|
|
'woocommerce_system_status_environment_rows' => 'woocommerce_debug_posting',
|
2017-06-19 18:24:53 +00:00
|
|
|
'woocommerce_credit_card_type_labels' => 'wocommerce_credit_card_type_labels',
|
2017-12-11 08:29:08 +00:00
|
|
|
'woocommerce_get_script_data' => array(
|
|
|
|
'woocommerce_params',
|
|
|
|
'wc_geolocation_params',
|
|
|
|
'wc_single_product_params',
|
|
|
|
'wc_checkout_params',
|
|
|
|
'wc_address_i18n_params',
|
|
|
|
'wc_cart_params',
|
|
|
|
'wc_cart_fragments_params',
|
|
|
|
'wc_add_to_cart_params',
|
|
|
|
'wc_add_to_cart_variation_params',
|
|
|
|
'wc_country_select_params',
|
|
|
|
'wc_password_strength_meter_params',
|
|
|
|
),
|
2018-04-16 13:27:03 +00:00
|
|
|
'woocommerce_settings_tabs_advanced' => 'woocommerce_settings_tabs_api',
|
|
|
|
'woocommerce_settings_advanced' => 'woocommerce_settings_api',
|
2017-02-14 18:57:45 +00:00
|
|
|
);
|
|
|
|
|
2017-11-22 17:21:32 +00:00
|
|
|
/**
|
|
|
|
* Array of versions on each hook has been deprecated.
|
|
|
|
*
|
|
|
|
* @var array
|
|
|
|
*/
|
|
|
|
protected $deprecated_version = array(
|
|
|
|
'woocommerce_email_order_schema_markup' => '3.0.0',
|
|
|
|
'add_to_cart_fragments' => '3.0.0',
|
|
|
|
'add_to_cart_redirect' => '3.0.0',
|
|
|
|
'woocommerce_product_width' => '3.0.0',
|
|
|
|
'woocommerce_product_height' => '3.0.0',
|
|
|
|
'woocommerce_product_length' => '3.0.0',
|
|
|
|
'woocommerce_product_weight' => '3.0.0',
|
|
|
|
'woocommerce_get_sku' => '3.0.0',
|
|
|
|
'woocommerce_get_price' => '3.0.0',
|
|
|
|
'woocommerce_get_regular_price' => '3.0.0',
|
|
|
|
'woocommerce_get_sale_price' => '3.0.0',
|
|
|
|
'woocommerce_product_tax_class' => '3.0.0',
|
|
|
|
'woocommerce_get_stock_quantity' => '3.0.0',
|
|
|
|
'woocommerce_get_product_attributes' => '3.0.0',
|
|
|
|
'woocommerce_product_gallery_attachment_ids' => '3.0.0',
|
|
|
|
'woocommerce_product_review_count' => '3.0.0',
|
|
|
|
'woocommerce_product_files' => '3.0.0',
|
|
|
|
'woocommerce_get_currency' => '3.0.0',
|
|
|
|
'woocommerce_order_amount_discount_total' => '3.0.0',
|
|
|
|
'woocommerce_order_amount_discount_tax' => '3.0.0',
|
|
|
|
'woocommerce_order_amount_shipping_total' => '3.0.0',
|
|
|
|
'woocommerce_order_amount_shipping_tax' => '3.0.0',
|
|
|
|
'woocommerce_order_amount_cart_tax' => '3.0.0',
|
|
|
|
'woocommerce_order_amount_total' => '3.0.0',
|
|
|
|
'woocommerce_order_amount_total_tax' => '3.0.0',
|
|
|
|
'woocommerce_order_amount_total_discount' => '3.0.0',
|
|
|
|
'woocommerce_order_amount_subtotal' => '3.0.0',
|
|
|
|
'woocommerce_order_tax_totals' => '3.0.0',
|
|
|
|
'woocommerce_refund_amount' => '3.0.0',
|
|
|
|
'woocommerce_refund_reason' => '3.0.0',
|
|
|
|
'default_checkout_country' => '3.0.0',
|
|
|
|
'default_checkout_state' => '3.0.0',
|
|
|
|
'default_checkout_postcode' => '3.0.0',
|
|
|
|
'woocommerce_debug_posting' => '3.0.0',
|
|
|
|
'wocommerce_credit_card_type_labels' => '3.0.0',
|
2018-04-16 13:27:03 +00:00
|
|
|
'woocommerce_settings_tabs_api' => '3.4.0',
|
|
|
|
'woocommerce_settings_api' => '3.4.0',
|
2017-11-22 17:21:32 +00:00
|
|
|
);
|
|
|
|
|
2017-02-14 18:57:45 +00:00
|
|
|
/**
|
|
|
|
* Hook into the new hook so we can handle deprecated hooks once fired.
|
2017-11-22 17:25:27 +00:00
|
|
|
*
|
|
|
|
* @param string $hook_name Hook name.
|
2017-02-14 18:57:45 +00:00
|
|
|
*/
|
|
|
|
public function hook_in( $hook_name ) {
|
|
|
|
add_filter( $hook_name, array( $this, 'maybe_handle_deprecated_hook' ), -1000, 8 );
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* If the old hook is in-use, trigger it.
|
|
|
|
*
|
2017-11-22 17:25:27 +00:00
|
|
|
* @param string $new_hook New hook name.
|
|
|
|
* @param string $old_hook Old hook name.
|
|
|
|
* @param array $new_callback_args New callback args.
|
|
|
|
* @param mixed $return_value Returned value.
|
2017-02-14 18:57:45 +00:00
|
|
|
* @return mixed
|
|
|
|
*/
|
|
|
|
public function handle_deprecated_hook( $new_hook, $old_hook, $new_callback_args, $return_value ) {
|
|
|
|
if ( has_filter( $old_hook ) ) {
|
|
|
|
$this->display_notice( $old_hook, $new_hook );
|
|
|
|
$return_value = $this->trigger_hook( $old_hook, $new_callback_args );
|
|
|
|
}
|
|
|
|
return $return_value;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Fire off a legacy hook with it's args.
|
|
|
|
*
|
2017-11-22 17:25:27 +00:00
|
|
|
* @param string $old_hook Old hook name.
|
|
|
|
* @param array $new_callback_args New callback args.
|
2017-02-14 18:57:45 +00:00
|
|
|
* @return mixed
|
|
|
|
*/
|
|
|
|
protected function trigger_hook( $old_hook, $new_callback_args ) {
|
2017-02-14 19:23:57 +00:00
|
|
|
return apply_filters_ref_array( $old_hook, $new_callback_args );
|
2017-02-14 18:57:45 +00:00
|
|
|
}
|
|
|
|
}
|