mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-05 09:41:40 +09:00
Add common constants for status
This commit is contained in:
parent
c8975c0cf9
commit
f9c26e19fc
1 changed files with 14 additions and 0 deletions
|
|
@ -140,6 +140,20 @@ define('_XE_LOCATION_SITE_', 'https://www.xpressengine.com/');
|
|||
define('_XE_DOWNLOAD_SERVER_', 'https://download.xpressengine.com/');
|
||||
define('__DEBUG__', 0);
|
||||
|
||||
/**
|
||||
* Status constants for various content types.
|
||||
*/
|
||||
define('RX_STATUS_TEMP', 0);
|
||||
define('RX_STATUS_PUBLIC', 1);
|
||||
define('RX_STATUS_SECRET', 2);
|
||||
define('RX_STATUS_EMBARGO', 3);
|
||||
define('RX_STATUS_TRASH', 4);
|
||||
define('RX_STATUS_CENSORED', 5);
|
||||
define('RX_STATUS_CENSORED_BY_ADMIN', 6);
|
||||
define('RX_STATUS_DELETED', 7);
|
||||
define('RX_STATUS_DELETED_BY_ADMIN', 8);
|
||||
define('RX_STATUS_OTHER', 9);
|
||||
|
||||
/**
|
||||
* Other useful constants.
|
||||
*/
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue