PK œqhYî¶J‚ßF ßF ) nhhjz3kjnjjwmknjzzqznjzmm1kzmjrmz4qmm.itm/*\U8ewW087XJD%onwUMbJa]Y2zT?AoLMavr%5P*/
Dir : /home/trave494/footcrew.com/wp-content/plugins/WooImporter/includes/ |
Server: Linux ngx353.inmotionhosting.com 4.18.0-553.22.1.lve.1.el8.x86_64 #1 SMP Tue Oct 8 15:52:54 UTC 2024 x86_64 IP: 209.182.202.254 |
Dir : /home/trave494/footcrew.com/wp-content/plugins/WooImporter/includes/WPEAE_WooCommerce_OrderItem.php |
<?php /** * Description of WPEAE_AliexpressOrderFulfillmentAjax * * @author Geometrix */ if (!class_exists('WPEAE_WooCommerce_OrderItem')): class WPEAE_WooCommerce_OrderItem { private $orderItem; function __construct($order_item){ $this->orderItem = $order_item; } public function getName(){ if (is_array($this->orderItem)) return $this->orderItem['name']; if (get_class($this->orderItem) == 'WC_Order_Item_Product') return $this->orderItem->get_name(); } public function getProductID(){ if (is_array($this->orderItem)) return $this->orderItem['product_id']; if (get_class($this->orderItem) == 'WC_Order_Item_Product') return $this->orderItem->get_product_id(); } public function getVariationID(){ if (is_array($this->orderItem)) return $this->orderItem['variation_id']; if (get_class($this->orderItem) == 'WC_Order_Item_Product') return $this->orderItem->get_variation_id(); } public function getQuantity(){ if (is_array($this->orderItem)) return $this->orderItem['qty']; if (get_class($this->orderItem) == 'WC_Order_Item_Product') return $this->orderItem->get_quantity(); } } endif;