aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes/constants.php
diff options
context:
space:
mode:
authorNathan Guse <nathaniel.guse@gmail.com>2013-07-13 08:57:20 -0700
committerNathan Guse <nathaniel.guse@gmail.com>2013-07-13 08:57:20 -0700
commit87795eba55172ed43119dd0ee022db68cf3ba8f6 (patch)
tree046da75f4a7ff4de734584b021ab86c06ea1feff /phpBB/includes/constants.php
parentd879acb7cca1a05a9adacc2376ab4118bd81ab4a (diff)
parent167ca1f33f8265e5dea6481cc69de16ccfdd0dce (diff)
downloadforums-87795eba55172ed43119dd0ee022db68cf3ba8f6.tar
forums-87795eba55172ed43119dd0ee022db68cf3ba8f6.tar.gz
forums-87795eba55172ed43119dd0ee022db68cf3ba8f6.tar.bz2
forums-87795eba55172ed43119dd0ee022db68cf3ba8f6.tar.xz
forums-87795eba55172ed43119dd0ee022db68cf3ba8f6.zip
Merge pull request #1017 from nickvergessen/feature/softdelete-1-permission
Soft delete
Diffstat (limited to 'phpBB/includes/constants.php')
-rw-r--r--phpBB/includes/constants.php4
1 files changed, 4 insertions, 0 deletions
diff --git a/phpBB/includes/constants.php b/phpBB/includes/constants.php
index 96011f4ec5..c1f4c6ac0e 100644
--- a/phpBB/includes/constants.php
+++ b/phpBB/includes/constants.php
@@ -87,6 +87,10 @@ define('ITEM_UNLOCKED', 0);
define('ITEM_LOCKED', 1);
define('ITEM_MOVED', 2);
+define('ITEM_UNAPPROVED', 0); // => has not yet been approved
+define('ITEM_APPROVED', 1); // => has been approved, and has not been soft deleted
+define('ITEM_DELETED', 2); // => has been soft deleted
+
// Forum Flags
define('FORUM_FLAG_LINK_TRACK', 1);
define('FORUM_FLAG_PRUNE_POLL', 2);