PluginProbe ʕ •ᴥ•ʔ
FAPI Member / 2.2.30
FAPI Member v2.2.30
2.2.33 2.2.32 trunk 1.9.47 2.1.18 2.2.24 2.2.25 2.2.26 2.2.28 2.2.29 2.2.30 2.2.31
fapi-member / src / Model / Enums / Keys / MetaKey.php
fapi-member / src / Model / Enums / Keys Last commit date
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