MetaKey.php
2 months ago
OptionKey.php
2 months ago
ScheduleKey.php
2 months ago
SessionKey.php
2 months ago
SettingsKey.php
2 months ago
MetaKey.php
40 lines
| 1 | <?php |
| 2 | |
| 3 | namespace FapiMember\Model\Enums\Keys; |
| 4 | |
| 5 | use FapiMember\Library\SmartEmailing\Types\Enum; |
| 6 | |
| 7 | class MetaKey extends Enum |
| 8 | { |
| 9 | const DAYS_TO_UNLOCK = 'fapi_days_to_unlock'; |
| 10 | |
| 11 | const DATE_UNLOCK = 'fapi_date_unlock'; |
| 12 | |
| 13 | const AFTER_DATE_UNLOCK = 'fapi_after_date_unlock'; |
| 14 | |
| 15 | const HOUR_UNLOCK = 'fapi_hour_unlock'; |
| 16 | |
| 17 | const TIME_UNLOCK = 'fapi_time_unlock'; |
| 18 | |
| 19 | const BUTTON_UNLOCK = 'fapi_button_unlock'; |
| 20 | |
| 21 | const MEMBERSHIP = 'fapi_user_memberships'; |
| 22 | |
| 23 | const MEMBERSHIP_HISTORY = 'fapi_user_memberships_history'; |
| 24 | |
| 25 | const PAGES = 'fapi_pages'; |
| 26 | |
| 27 | const NO_ACCESS_PAGE = 'fapi_page_noAccess'; |
| 28 | |
| 29 | const LOGIN_PAGE = 'fapi_page_login'; |
| 30 | |
| 31 | const AFTER_LOGIN_PAGE = 'fapi_page_afterLogin'; |
| 32 | |
| 33 | const EMAIL_AFTER_REGISTRATION = 'fapi_email_afterRegistration'; |
| 34 | |
| 35 | const EMAIL_AFTER_MEMBERSHIP_PROLONGED = 'fapi_email_afterMembershipProlonged'; |
| 36 | |
| 37 | const EMAIL_AFTER_ADDING = 'fapi_email_afterAdding'; |
| 38 | |
| 39 | } |
| 40 |