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
PostStatus.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 PostStatus |
| 10 | { |
| 11 | use HasConstants; |
| 12 | |
| 13 | const DRAFT = 'draft'; |
| 14 | const PUBLISH = 'publish'; |
| 15 | const FUTURE = 'future'; |
| 16 | const TRASH = 'trash'; |
| 17 | const AUTO_DRAFT = 'auto-draft'; |
| 18 | } |
| 19 |