| 1 |
<?php |
| 2 |
/** |
| 3 |
* Declare class Enum |
| 4 |
* |
| 5 |
* @package Enum |
| 6 |
*/ |
| 7 |
|
| 8 |
namespace LassoLite\Classes; |
| 9 |
|
| 10 |
use LassoLite\Admin\Constant; |
| 11 |
|
| 12 |
/** |
| 13 |
* Enum |
| 14 |
*/ |
| 15 |
class Enum { |
| 16 |
const PAGE_DASHBOARD = 'dashboard'; |
| 17 |
const PAGE_OPPORTUNITIES = 'opportunities'; |
| 18 |
const PAGE_IMPORT = 'import'; |
| 19 |
const PAGE_TABLES = 'tables'; |
| 20 |
const PAGE_URL_DETAILS = 'url-details'; |
| 21 |
const PAGE_GROUPS = 'groups'; |
| 22 |
const PAGE_GROUP_DETAIL = 'group-detail'; |
| 23 |
const PAGE_ONBOARDING = 'onboarding'; |
| 24 |
|
| 25 |
const PAGE_SETTINGS_GENERAL = 'settings-general'; |
| 26 |
const PAGE_SETTINGS_DISPLAY = 'settings-display'; |
| 27 |
const PAGE_SETTINGS_AMAZON = 'settings-amazon'; |
| 28 |
|
| 29 |
const LASSO_LITE_ACTIVE = 'is_active_lasso_lite'; |
| 30 |
const SWITCH_TO_NEW_UI = 'is_lasso_live_switch_to_new_ui'; |
| 31 |
const IS_VISITED_WELCOME_PAGE = 'is_visited_welcome_page'; |
| 32 |
const RESET_WELCOME_PAGE = 'reset-onboarding'; |
| 33 |
|
| 34 |
const LIMIT_ON_PAGE = 10; |
| 35 |
const REWRITE_SLUG_DEFAULT = 'go'; |
| 36 |
|
| 37 |
const THEME_CACTUS = 'Cactus'; |
| 38 |
const THEME_CUTTER = 'Cutter'; |
| 39 |
const THEME_FLOW = 'Flow'; |
| 40 |
const THEME_GEEK = 'Geek'; |
| 41 |
const THEME_LAB = 'Lab'; |
| 42 |
const THEME_LLAMA = 'Llama'; |
| 43 |
const THEME_MONEY = 'Money'; |
| 44 |
const THEME_SPLASH = 'Splash'; |
| 45 |
|
| 46 |
const FOLLOW_ON_TWITTER = 'lasso_lite_follow_on_twitter'; |
| 47 |
const SHARE_ON_TWITTER = 'lasso_lite_share_on_twitter'; |
| 48 |
|
| 49 |
const LEAVE_A_REVIEW = 'lasso_lite_leave_a_review'; |
| 50 |
const SETUP_AMZ_TRACKING_ID = 'lasso_lite_setup_amz_tracking_id'; |
| 51 |
|
| 52 |
const TWITTER_URL = 'https://twitter.com/lassowp'; |
| 53 |
const TWITTER_SHARE_URL = 'https://twitter.com/intent/tweet?text=I%27m%20using%20@LassoWP%20to%20improve%20the%20conversions%20on%20my%20niche%20site.%20I%20also%20got%20a%20discount%20upgrading%20to%20Pro%20%F0%9F%98%8E'; |
| 54 |
const LASSO_REVIEW_URL = 'https://wordpress.org/plugins/simple-urls/#reviews'; |
| 55 |
|
| 56 |
const SLUG_CLOAK_FOLLOW_TWITTER = Constant::LASSO_POST_TYPE . '=follow-lassowp'; |
| 57 |
const SLUG_CLOAK_SHARE_TWITTER = Constant::LASSO_POST_TYPE . '=share-lassowp'; |
| 58 |
const SLUG_CLOAK_LASSO_REVIEW_URL = Constant::LASSO_POST_TYPE . '=leave-a-review-lassowp'; |
| 59 |
|
| 60 |
const SUPPORT_ENABLED = 'support_enabled'; |
| 61 |
const SUPPORT_ENABLED_TIME = 'support_enabled_time'; |
| 62 |
const USER_HASH = 'user_hash'; |
| 63 |
const IS_SUBSCRIBE = 'is_subscribe'; |
| 64 |
const EMAIL_SUPPORT = 'email_support'; |
| 65 |
const IS_PRE_POPULATED_AMAZON_API = 'is_pre_populated_amazon_api'; |
| 66 |
|
| 67 |
const SUB_PAGE_GROUP_DETAIL = 'detail'; |
| 68 |
const SUB_PAGE_GROUP_URLS = 'urls'; |
| 69 |
const SUB_PAGE_GROUP_ADD = 'add'; |
| 70 |
} |
| 71 |
|