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
PageContentTypes.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 PageContentTypes { |
| 10 | use HasConstants; |
| 11 | |
| 12 | const STYLES = 'styles'; |
| 13 | const BLOCKS = 'blocks'; |
| 14 | const USED_STYLES = 'used-styles'; // Global styles |
| 15 | const USED_STYLE_IDS_RANDOM = 'used-style-ids-random'; // Current Page style ids |
| 16 | const USED_FONTS = 'used-fonts'; |
| 17 | const CUSTOM_FONTS = 'custom-fonts'; |
| 18 | const VIEWPORT_LIST = 'viewport-list'; |
| 19 | } |