PluginProbe
Lasso Lite – Affiliate Link Manager & Product Displays / 150
Lasso Lite – Affiliate Link Manager & Product Displays v150
157 155 156 154 153 152 151 150 149 148 trunk 0.9.9 104 105 106 107 108 109 110 111 112 113 114 115 116 All 56 releases
simple-urls / classes / class-setting-enum.php

class-setting-enum.php in Lasso Lite – Affiliate Link Manager & Product Displays 150, at classes/class-setting-enum.php

39 lines 1.2 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 /**
3 * Declare class Setting_Enum
4 *
5 * @package Setting_Enum
6 */
7
8 namespace LassoLite\Classes;
9
10 /**
11 * MetaKeyEnum
12 */
13 class Setting_Enum {
14 const PRETTY_LINK_SLUG = 'pretty-link';
15 const THIRSTYLINK_SLUG = 'thirstylink';
16 const SURL_SLUG = 'surl';
17 const EARNIST_SLUG = 'earnist';
18 const AFFILIATE_URL_SLUG = 'affiliate_url';
19 const AAWP_SLUG = 'aawp';
20 const EASYAZON_SLUG = 'easyazon';
21 const EASY_AFFILIATE_LINK_SLUG = 'easy_affiliate_link';
22 const AMA_LINKS_PRO_SLUG = 'amalinkspro';
23 const LASSO_PRO_SLUG = 'lasso-urls';
24 const RECREATE_TABLE_TIME = 'recreate_table_time';
25 const NEXT_TIME_RECREATE_TABLE = 'next_time_recreate_table';
26
27 const SUPPORT_IMPORT_PLUGINS = array(
28 self::PRETTY_LINK_SLUG => 'Pretty Links',
29 self::THIRSTYLINK_SLUG => 'Thirsty Affiliates',
30 self::EARNIST_SLUG => 'Earnist',
31 self::AFFILIATE_URL_SLUG => 'Affiliate URLs',
32 self::AAWP_SLUG => 'AAWP',
33 self::EASYAZON_SLUG => 'EasyAzon',
34 self::EASY_AFFILIATE_LINK_SLUG => 'Easy Affiliate Links',
35 self::AMA_LINKS_PRO_SLUG => 'AmaLinks Pro',
36 self::LASSO_PRO_SLUG => 'Lasso Pro',
37 );
38 }
39