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
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 | } |