| 1 |
<?php |
| 2 |
/** |
| 3 |
* Declare class Meta_Enum |
| 4 |
* |
| 5 |
* @package Meta_Enum |
| 6 |
*/ |
| 7 |
|
| 8 |
namespace LassoLite\Classes; |
| 9 |
|
| 10 |
/** |
| 11 |
* MetaKeyEnum |
| 12 |
*/ |
| 13 |
class Meta_Enum { |
| 14 |
const SURL_REDIRECT = '_surl_redirect'; |
| 15 |
const SURL_COUNT = '_surl_count'; |
| 16 |
const LASSO_LITE_CUSTOM_THUMBNAIL = '_lasso_lite_custom_thumbnail'; |
| 17 |
const OPEN_NEW_TAB = '_open_new_tab'; |
| 18 |
const ENABLE_NOFOLLOW = '_enable_nofollow'; |
| 19 |
const BUY_BTN_TEXT = '_buy_btn_text'; |
| 20 |
const SHOW_DISCLOSURE = '_show_disclosure'; |
| 21 |
const THUMBNAIL_ID = '_thumbnail_id'; |
| 22 |
const DESCRIPTION = '_description'; |
| 23 |
const ENABLE_SPONSORED = '_enable_sponsored'; |
| 24 |
const SHOW_PRICE = '_show_price'; |
| 25 |
const PRICE = '_price'; |
| 26 |
const BADGE_TEXT = '_badge_text'; |
| 27 |
} |
| 28 |
|