| 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 |
|