CollaborationComment
1 month ago
Collection
1 month ago
Form
5 days ago
AccessLevels.php
1 month ago
CollaborationConnectionType.php
1 month ago
CollaborationParent.php
1 month ago
CollaborationStatus.php
1 month ago
CollectionTypes.php
1 month ago
GlobalDataKeys.php
2 weeks ago
KirkiDateTimeFormat.php
1 month ago
OptionKeys.php
5 days ago
PageContentTypes.php
2 weeks ago
PageMetaKeys.php
5 days ago
PostStatus.php
1 month ago
PostTypes.php
1 month ago
UserMetaKeys.php
5 days ago
UtilityPageType.php
1 month ago
UserMetaKeys.php
20 lines
| 1 | <?php |
| 2 | |
| 3 | namespace Kirki\App\Constants; |
| 4 | |
| 5 | defined('ABSPATH') || exit; |
| 6 | |
| 7 | use Kirki\Framework\Concerns\HasConstants; |
| 8 | |
| 9 | class UserMetaKeys |
| 10 | { |
| 11 | use HasConstants; |
| 12 | |
| 13 | const CAPABILITIES = 'wp_capabilities'; |
| 14 | |
| 15 | /** |
| 16 | * @see KIRKI_USER_WALKTHROUGH_SHOWN_META_KEY |
| 17 | */ |
| 18 | const WALKTHROUGH_SHOWN_STATE = 'user_walkthrough_shown_state'; |
| 19 | } |
| 20 |