mirror of
https://github.com/proelements/proelements.git
synced 2026-04-05 20:13:47 +00:00
10 lines
166 B
PHP
10 lines
166 B
PHP
<?php
|
|
|
|
namespace ElementorPro\Core\Admin;
|
|
|
|
class Post_Status {
|
|
public const PUBLISH = 'publish';
|
|
public const PRIVATE = 'private';
|
|
public const DRAFT = 'draft';
|
|
}
|