PATH:
home
/
lab2454c
/
sothebankuab.com
/
wp-content
/
plugins
/
woocommerce
/
includes
<?php /** * Deprecated action hooks * * @package WooCommerce\Abstracts * @since 3.0.0 * @version 3.3.0 */ defined( 'ABSPATH' ) || exit; /** * Handles deprecation notices and triggering of legacy action hooks. */ class WC_Deprecated_Action_Hooks extends WC_Deprecated_Hooks { /** * Array of deprecated hooks we need to handle. Format of 'new' => 'old'. * * @var array */ protected $deprecated_hooks = array( 'woocommerce_new_order_item' => array( 'woocommerce_order_add_shipping', 'woocommerce_order_add_coupon', 'woocommerce_order_add_tax', 'woocommerce_order_add_fee', 'woocommerce_add_shipping_order_item', 'woocommerce_add_order_item_meta', 'woocommerce_add_order_fee_meta', ), 'woocommerce_update_order_item' => array( 'woocommerce_order_edit_product', 'woocommerce_order_update_coupon', 'woocommerce_order_update_shipping', 'woocommerce_order_update_fee', 'woocommerce_order_update_tax', ), 'woocommerce_new_payment_token' => 'woocommerce_payment_token_created', 'woocommerce_new_product_variation' => 'woocommerce_create_product_variation', 'woocommerce_order_details_after_order_table_items' => 'woocommerce_order_items_table', 'woocommerce_settings_advanced_page_options' => array( 'woocommerce_settings_checkout_page_options', 'woocommerce_settings_account_page_options', ), 'woocommerce_settings_advanced_page_options_end' => array( 'woocommerce_settings_checkout_page_options_end', 'woocommerce_settings_account_page_options_end', ), 'woocommerce_settings_advanced_page_options_after' => array( 'woocommerce_settings_checkout_page_options_after', 'woocommerce_settings_account_page_options_after', ), ); /** * Array of versions on each hook has been deprecated. * * @var array */ protected $deprecated_version = array( 'woocommerce_order_add_shipping' => '3.0.0', 'woocommerce_order_add_coupon' => '3.0.0', 'woocommerce_order_add_tax' => '3.0.0', 'woocommerce_order_add_fee' => '3.0.0', 'woocommerce_add_shipping_order_item' => '3.0.0', 'woocommerce_add_order_item_meta' => '3.0.0', 'woocommerce_add_order_fee_meta' => '3.0.0', 'woocommerce_order_edit_product' => '3.0.0', 'woocommerce_order_update_coupon' => '3.0.0', 'woocommerce_order_update_shipping' => '3.0.0', 'woocommerce_order_update_fee' => '3.0.0', 'woocommerce_order_update_tax' => '3.0.0', 'woocommerce_payment_token_created' => '3.0.0', 'woocommerce_create_product_variation' => '3.0.0', 'woocommerce_order_items_table' => '3.0.0', 'woocommerce_settings_checkout_page_options' => '3.4.0', 'woocommerce_settings_account_page_options' => '3.4.0', 'woocommerce_settings_checkout_page_options_end' => '3.4.0', 'woocommerce_settings_account_page_options_end' => '3.4.0', 'woocommerce_settings_checkout_page_options_after' => '3.4.0', 'woocommerce_settings_account_page_options_after' => '3.4.0', ); /** * Hook into the new hook so we can handle deprecated hooks once fired. * * @param string $hook_name Hook name. */ public function hook_in( $hook_name ) { add_action( $hook_name, array( $this, 'maybe_handle_deprecated_hook' ), -1000, 8 ); } /** * If the old hook is in-use, trigger it. * * @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. * @return mixed */ public function handle_deprecated_hook( $new_hook, $old_hook, $new_callback_args, $return_value ) { if ( has_action( $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. * * @param string $old_hook Old hook name. * @param array $new_callback_args New callback args. * @return mixed */ protected function trigger_hook( $old_hook, $new_callback_args ) { switch ( $old_hook ) { case 'woocommerce_order_add_shipping': case 'woocommerce_order_add_fee': $item_id = $new_callback_args[0]; $item = $new_callback_args[1]; $order_id = $new_callback_args[2]; if ( is_a( $item, 'WC_Order_Item_Shipping' ) || is_a( $item, 'WC_Order_Item_Fee' ) ) { do_action( $old_hook, $order_id, $item_id, $item ); } break; case 'woocommerce_order_add_coupon': $item_id = $new_callback_args[0]; $item = $new_callback_args[1]; $order_id = $new_callback_args[2]; if ( is_a( $item, 'WC_Order_Item_Coupon' ) ) { do_action( $old_hook, $order_id, $item_id, $item->get_code(), $item->get_discount(), $item->get_discount_tax() ); } break; case 'woocommerce_order_add_tax': $item_id = $new_callback_args[0]; $item = $new_callback_args[1]; $order_id = $new_callback_args[2]; if ( is_a( $item, 'WC_Order_Item_Tax' ) ) { do_action( $old_hook, $order_id, $item_id, $item->get_rate_id(), $item->get_tax_total(), $item->get_shipping_tax_total() ); } break; case 'woocommerce_add_shipping_order_item': $item_id = $new_callback_args[0]; $item = $new_callback_args[1]; $order_id = $new_callback_args[2]; if ( is_a( $item, 'WC_Order_Item_Shipping' ) ) { do_action( $old_hook, $order_id, $item_id, $item->legacy_package_key ); } break; case 'woocommerce_add_order_item_meta': $item_id = $new_callback_args[0]; $item = $new_callback_args[1]; $order_id = $new_callback_args[2]; if ( is_a( $item, 'WC_Order_Item_Product' ) ) { do_action( $old_hook, $item_id, $item->legacy_values, $item->legacy_cart_item_key ); } break; case 'woocommerce_add_order_fee_meta': $item_id = $new_callback_args[0]; $item = $new_callback_args[1]; $order_id = $new_callback_args[2]; if ( is_a( $item, 'WC_Order_Item_Fee' ) ) { do_action( $old_hook, $order_id, $item_id, $item->legacy_fee, $item->legacy_fee_key ); } break; case 'woocommerce_order_edit_product': $item_id = $new_callback_args[0]; $item = $new_callback_args[1]; $order_id = $new_callback_args[2]; if ( is_a( $item, 'WC_Order_Item_Product' ) ) { do_action( $old_hook, $order_id, $item_id, $item, $item->get_product() ); } break; case 'woocommerce_order_update_coupon': case 'woocommerce_order_update_shipping': case 'woocommerce_order_update_fee': case 'woocommerce_order_update_tax': if ( ! is_a( $item, 'WC_Order_Item_Product' ) ) { do_action( $old_hook, $order_id, $item_id, $item ); } break; default: do_action_ref_array( $old_hook, $new_callback_args ); break; } } }
[+]
..
[-] wc-page-functions.php
[edit]
[-] class-wc-countries.php
[edit]
[-] class-wc-ajax.php
[edit]
[-] class-wc-privacy.php
[edit]
[+]
customizer
[+]
gateways
[-] class-wc-order-refund.php
[edit]
[-] wc-stock-functions.php
[edit]
[-] class-wc-cart.php
[edit]
[-] class-wc-tracker.php
[edit]
[-] class-wc-frontend-scripts.php
[edit]
[-] class-wc-product-download.php
[edit]
[+]
widgets
[+]
admin
[-] class-wc-auth.php
[edit]
[-] class-wc-rest-authentication.php
[edit]
[-] class-wc-data-exception.php
[edit]
[-] class-wc-log-levels.php
[edit]
[-] wc-coupon-functions.php
[edit]
[-] class-wc-order-item-shipping.php
[edit]
[+]
integrations
[-] class-wc-payment-gateways.php
[edit]
[-] wc-order-functions.php
[edit]
[+]
shipping
[-] class-wc-order-item-coupon.php
[edit]
[-] class-wc-payment-tokens.php
[edit]
[-] wc-deprecated-functions.php
[edit]
[-] class-wc-product-grouped.php
[edit]
[+]
tracks
[-] wc-product-functions.php
[edit]
[-] class-wc-datetime.php
[edit]
[-] wc-user-functions.php
[edit]
[-] wc-widget-functions.php
[edit]
[-] class-wc-breadcrumb.php
[edit]
[-] class-wc-customer-download-log.php
[edit]
[-] class-wc-order-query.php
[edit]
[-] wc-template-hooks.php
[edit]
[-] class-wc-https.php
[edit]
[-] class-wc-order.php
[edit]
[-] wc-attribute-functions.php
[edit]
[-] class-wc-session-handler.php
[edit]
[-] class-wc-product-variation.php
[edit]
[-] class-wc-query.php
[edit]
[-] class-wc-coupon.php
[edit]
[-] class-wc-shipping-zone.php
[edit]
[-] wc-account-functions.php
[edit]
[-] wc-formatting-functions.php
[edit]
[-] class-wc-integrations.php
[edit]
[-] class-wc-validation.php
[edit]
[-] class-wc-webhook.php
[edit]
[+]
traits
[-] class-wc-checkout.php
[edit]
[-] wc-core-functions.php
[edit]
[+]
emails
[-] wc-cart-functions.php
[edit]
[-] class-wc-shipping.php
[edit]
[-] class-wc-customer-download.php
[edit]
[-] class-wc-geolite-integration.php
[edit]
[-] class-wc-data-store.php
[edit]
[-] class-wc-order-item-tax.php
[edit]
[-] class-wc-customer.php
[edit]
[-] class-wc-product-attribute.php
[edit]
[+]
legacy
[+]
import
[-] class-wc-cli.php
[edit]
[+]
wccom-site
[-] class-wc-form-handler.php
[edit]
[-] class-wc-tax.php
[edit]
[-] wc-order-item-functions.php
[edit]
[+]
blocks
[-] class-wc-cache-helper.php
[edit]
[-] class-wc-cart-totals.php
[edit]
[-] class-wc-emails.php
[edit]
[-] class-wc-product-query.php
[edit]
[-] class-wc-download-handler.php
[edit]
[-] class-wc-product-external.php
[edit]
[-] class-woocommerce.php
[edit]
[-] class-wc-logger.php
[edit]
[-] class-wc-shipping-zones.php
[edit]
[-] class-wc-order-item-meta.php
[edit]
[+]
walkers
[+]
shortcodes
[-] class-wc-cart-session.php
[edit]
[+]
rest-api
[-] class-wc-autoloader.php
[edit]
[-] class-wc-meta-data.php
[edit]
[-] wc-notice-functions.php
[edit]
[+]
queue
[-] class-wc-order-item.php
[edit]
[-] class-wc-shortcodes.php
[edit]
[-] wc-term-functions.php
[edit]
[-] wc-webhook-functions.php
[edit]
[-] class-wc-privacy-exporters.php
[edit]
[-] class-wc-privacy-background-process.php
[edit]
[-] class-wc-regenerate-images-request.php
[edit]
[-] class-wc-deprecated-filter-hooks.php
[edit]
[+]
interfaces
[-] class-wc-background-emailer.php
[edit]
[-] class-wc-geo-ip.php
[edit]
[+]
data-stores
[-] class-wc-comments.php
[edit]
[-] wc-conditional-functions.php
[edit]
[-] class-wc-product-factory.php
[edit]
[+]
theme-support
[+]
libraries
[-] class-wc-structured-data.php
[edit]
[-] class-wc-order-factory.php
[edit]
[-] class-wc-cart-fees.php
[edit]
[-] class-wc-deprecated-action-hooks.php
[edit]
[-] class-wc-order-item-fee.php
[edit]
[+]
cli
[-] class-wc-background-updater.php
[edit]
[-] class-wc-discounts.php
[edit]
[-] class-wc-rate-limiter.php
[edit]
[-] class-wc-geolocation.php
[edit]
[-] class-wc-privacy-erasers.php
[edit]
[-] class-wc-post-types.php
[edit]
[+]
export
[+]
log-handlers
[-] class-wc-regenerate-images.php
[edit]
[+]
abstracts
[-] class-wc-rest-exception.php
[edit]
[-] class-wc-order-item-product.php
[edit]
[-] class-wc-product-simple.php
[edit]
[-] wc-rest-functions.php
[edit]
[-] class-wc-post-data.php
[edit]
[-] class-wc-embed.php
[edit]
[+]
payment-tokens
[-] class-wc-template-loader.php
[edit]
[-] class-wc-product-variable.php
[edit]
[-] class-wc-install.php
[edit]
[-] class-wc-shipping-rate.php
[edit]
[-] class-wc-api.php
[edit]
[-] wc-template-functions.php
[edit]
[-] wc-update-functions.php
[edit]
[-] class-wc-register-wp-admin-settings.php
[edit]