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 weeks ago
KirkiDateTimeFormat.php
3 weeks ago
OptionKeys.php
3 weeks ago
PageMetaKeys.php
3 weeks ago
PostStatus.php
3 weeks ago
PostTypes.php
3 weeks ago
UserMetaKeys.php
3 weeks ago
UtilityPageType.php
3 weeks ago
OptionKeys.php
18 lines
| 1 | <?php |
| 2 | |
| 3 | namespace Kirki\App\Constants; |
| 4 | |
| 5 | defined('ABSPATH') || exit; |
| 6 | |
| 7 | use Kirki\Framework\Concerns\HasConstants; |
| 8 | |
| 9 | class OptionKeys |
| 10 | { |
| 11 | use HasConstants; |
| 12 | |
| 13 | const MIGRATIONS = 'kirki_database_migrations'; // @todo: will be handled later |
| 14 | const GLOBAL_DATA_POST_TYPE_ID = 'KIRKI_GLOBAL_DATA_POST_TYPE_ID'; |
| 15 | const DROIP_GLOBAL_DATA_POST_TYPE_ID = 'DROIP_GLOBAL_DATA_POST_TYPE_ID'; // @todo: will be removed if not needed |
| 16 | const PAGE_ON_FRONT = 'page_on_front'; |
| 17 | } |
| 18 |