PluginProbe
AliNext – WooCommerce Dropshipping Plugin for AliExpress / trunk
AliNext – WooCommerce Dropshipping Plugin for AliExpress vtrunk
ali2woo-lite / includes / classes / utils / Constants.php

Constants.php in AliNext – WooCommerce Dropshipping Plugin for AliExpress trunk, at includes/classes/utils/Constants.php

44 lines 816 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2
3 /**
4 * Description of Constants
5 *
6 * @author Ali2Woo Team
7 */
8
9 namespace AliNext_Lite;;
10
11 class Constants {
12
13 public static function order_item_external_order_meta(){
14 return "_a2w_external_order_item_id";
15 }
16
17 public static function order_item_tracking_data_meta(){
18 return "_a2w_tracking_data";
19 }
20
21 public static function product_external_meta(){
22 return "_a2w_external_id";
23 }
24
25 public static function product_reviews_max_number_meta(){
26 return "_a2w_reviews_max_number";
27 }
28
29
30
31
32
33 //old meta keys, they will be deleted in a future
34 public static function old_order_external_order_id(){
35 return "_a2w_external_order_id";
36 }
37
38 public static function old_order_tracking_code(){
39 return "_a2w_tracking_code";
40 }
41
42 }
43
44