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
OptionKey.php
32 lines
| 1 | <?php |
| 2 | |
| 3 | namespace FapiMember\Model\Enums\Keys; |
| 4 | |
| 5 | use FapiMember\Library\SmartEmailing\Types\Enum; |
| 6 | |
| 7 | class OptionKey extends Enum |
| 8 | { |
| 9 | const SETTINGS = 'fapiSettings'; |
| 10 | |
| 11 | const FAPI_MEMBER_VERSION = 'fapiMemberVersion'; |
| 12 | |
| 13 | const API_USER = 'fapiMemberApiEmail'; |
| 14 | |
| 15 | const API_KEY = 'fapiMemberApiKey'; |
| 16 | |
| 17 | const API_CREDENTIALS = 'fapiMemberApiCredentials'; |
| 18 | |
| 19 | const API_URL = 'fapiMemberApiUrl'; |
| 20 | |
| 21 | const API_CHECKED = 'fapiMemberApiChecked'; |
| 22 | |
| 23 | const TOKEN = 'fapiMemberApiToken'; |
| 24 | |
| 25 | const IS_DEVELOPMENT = 'fapiIsDevelopment'; |
| 26 | |
| 27 | const POST_TYPES = 'fapi_member_post_types'; |
| 28 | |
| 29 | const LEVELS_ORDER = 'fapi_levels_order_new'; |
| 30 | |
| 31 | } |
| 32 |