mirror of
https://github.com/woodchen-ink/czlexpress-for-woocommerce.git
synced 2025-07-18 14:01:58 +08:00
16 lines
475 B
PHP
16 lines
475 B
PHP
class WC_CZLExpress_Shipping {
|
|
|
|
public function get_shipping_info($order_id) {
|
|
$order = wc_get_order($order_id);
|
|
|
|
if ($order) {
|
|
return array(
|
|
'weight' => $order->get_meta('_czlexpress_weight'),
|
|
'remote_fee' => $order->get_meta('_czlexpress_remote_fee'),
|
|
'shipping_method' => $order->get_meta('_czlexpress_shipping_method')
|
|
);
|
|
}
|
|
|
|
return false;
|
|
}
|
|
}
|