Keys
1 year ago
Types
1 year ago
Alert.php
1 year ago
Format.php
1 year ago
PostValue.php
2 years ago
SubPage.php
2 years ago
UserPermission.php
2 years ago
SubPage.php
27 lines
| 1 | <?php |
| 2 | |
| 3 | namespace FapiMember\Model\Enums; |
| 4 | |
| 5 | use FapiMember\Library\SmartEmailing\Types\Enum; |
| 6 | |
| 7 | class SubPage extends Enum |
| 8 | { |
| 9 | const SECTION_NEW = 'settingsSectionNew'; |
| 10 | |
| 11 | const LEVEL_NEW = 'settingsLevelNew'; |
| 12 | |
| 13 | const CONNECTION = 'connection'; |
| 14 | |
| 15 | const SETTINGS_CONTENT_ADD = 'settingsContentAdd'; |
| 16 | |
| 17 | const SETTINGS_CONTENT_REMOVE = 'settingsContentRemove'; |
| 18 | |
| 19 | const SETTINGS_EMAILS = 'settingsEmails'; |
| 20 | |
| 21 | const SETTINGS_PAGES = 'settingsPages'; |
| 22 | |
| 23 | const SETTINGS_SETTINGS = 'settingsSettings'; |
| 24 | |
| 25 | const SETTINGS_UNLOCKING = 'settingsUnlocking'; |
| 26 | } |
| 27 |