CollaborationComment
3 weeks ago
Collection
3 weeks ago
AccessLevels.php
3 weeks ago
CollaborationConnectionType.php
3 weeks ago
CollaborationParent.php
3 weeks ago
CollaborationStatus.php
3 weeks ago
CollectionTypes.php
3 weeks ago
GlobalDataKeys.php
3 days ago
KirkiDateTimeFormat.php
3 weeks ago
OptionKeys.php
3 weeks ago
PageContentTypes.php
3 days ago
PageMetaKeys.php
3 days ago
PostStatus.php
3 weeks ago
PostTypes.php
3 weeks ago
UserMetaKeys.php
3 weeks ago
UtilityPageType.php
3 weeks ago
UtilityPageType.php
19 lines
| 1 | <?php |
| 2 | |
| 3 | namespace Kirki\App\Constants; |
| 4 | |
| 5 | defined('ABSPATH') || exit; |
| 6 | |
| 7 | use Kirki\Framework\Concerns\HasConstants; |
| 8 | |
| 9 | class UtilityPageType |
| 10 | { |
| 11 | use HasConstants; |
| 12 | |
| 13 | const NOT_FOUND = '404'; |
| 14 | const LOGIN = 'login'; |
| 15 | const SIGN_UP = 'sign_up'; |
| 16 | const FORGOT_PASSWORD = 'forgot_password'; |
| 17 | const RESET_PASSWORD = 'reset_password'; |
| 18 | const RETRIEVE_USERNAME = 'retrive_username'; |
| 19 | } |