automatewoo/includes/Variables/Abstract_Shipment_Tracking.php
fei-source 47d3c9a8b6 Update to v6.2.2
Source: GrootMade/Festinger Vault
2026-03-15 08:31:15 +08:00

26 lines
700 B
PHP

<?php
namespace AutomateWoo;
defined( 'ABSPATH' ) || exit;
aw_deprecated_class( Variable_Abstract_Shipment_Tracking::class, '5.2.0', Shipment_Tracking_Integration::class );
/**
* Variable_Abstract_Shipment_Tracking class.
*
* @deprecated Use \AutomateWoo\Shipment_Tracking_Integration::get_shipment_tracking_field instead.
*/
abstract class Variable_Abstract_Shipment_Tracking extends Variable {
/**
* Gets the first shipment tracking array
*
* @param \WC_Order $order
* @param string $field
* @return false|string
*/
public function get_shipment_tracking_field( $order, $field ) {
return Shipment_Tracking_Integration::get_shipment_tracking_field( $order, $field );
}
}