Keys
11 months ago
Types
11 months ago
Alert.php
11 months ago
Format.php
11 months ago
PostValue.php
11 months ago
SubPage.php
11 months ago
UserPermission.php
11 months ago
Alert.php
46 lines
| 1 | <?php |
| 2 | |
| 3 | namespace FapiMember\Model\Enums; |
| 4 | |
| 5 | use FapiMember\Library\SmartEmailing\Types\Enum; |
| 6 | |
| 7 | class Alert extends Enum |
| 8 | { |
| 9 | const API_FORM_EMPTY = 'apiFormEmpty'; |
| 10 | |
| 11 | const API_FORM_SUCCESS ='apiFormSuccess'; |
| 12 | |
| 13 | const API_FORM_ERROR = 'apiFormError'; |
| 14 | |
| 15 | const API_FORM_CREDENTIALS_EXIST = 'apiFormCredentialsExist'; |
| 16 | |
| 17 | const API_FORM_TOO_MANY_CREDENTIALS = 'apiFormTooManyCredentials'; |
| 18 | |
| 19 | const API_FORM_CREDENTIALS_REMOVED = 'apiFormCredentialsRemoved'; |
| 20 | |
| 21 | const SECTION_NAME_EMPTY = 'sectionNameEmpty'; |
| 22 | |
| 23 | const REMOVE_LEVEL_SUCCESSFUL = 'removeLevelSuccessful'; |
| 24 | |
| 25 | const INTERNAL_ERROR = 'internalError'; |
| 26 | |
| 27 | const SETTINGS_SAVED = 'settingsSaved'; |
| 28 | |
| 29 | const LEVEL_ALREADY_EXISTS = 'levelAlreadyExists'; |
| 30 | |
| 31 | const REORDER_FAILED = 'reorderFailed'; |
| 32 | |
| 33 | const MEMBERSHIP_REGISTERED_EXTENDED = 'membershipRegisteredExtended'; |
| 34 | |
| 35 | const MEMBERSHIP_UNTIL_EXTENDED = 'membershipUntilExtended'; |
| 36 | |
| 37 | const INVALID_EMAIL = 'invalidEmail'; |
| 38 | |
| 39 | const MISSING_EMAIL = 'missingEmail'; |
| 40 | |
| 41 | const IMPORT_FAILED = 'importFailed'; |
| 42 | |
| 43 | const IMPORT_LEVEL_ID_DOESNT_EXIST = 'importLevelIdDoesntExist'; |
| 44 | |
| 45 | } |
| 46 |