aboutsummaryrefslogtreecommitdiffstats
path: root/boot.php
diff options
context:
space:
mode:
Diffstat (limited to 'boot.php')
-rw-r--r--boot.php24
1 files changed, 24 insertions, 0 deletions
diff --git a/boot.php b/boot.php
index 32333197e..7e4cbbada 100644
--- a/boot.php
+++ b/boot.php
@@ -316,6 +316,30 @@ define ( 'ACCOUNT_REMOVED', 0x0008 );
define ( 'ACCOUNT_ROLE_ADMIN', 0x1000 );
+/**
+ * Item visibility
+ */
+
+define ( 'ITEM_VISIBLE', 0x0000);
+define ( 'ITEM_HIDDEN', 0x0001);
+define ( 'ITEM_BLOCKED', 0x0002);
+define ( 'ITEM_MODERATED', 0x0004);
+define ( 'ITEM_SPAM', 0x0008);
+define ( 'ITEM_DELETED', 0x0010);
+
+/**
+ * Item Flags
+ */
+
+define ( 'ITEM_ORIGIN', 0x0001);
+define ( 'ITEM_UNSEEN', 0x0002);
+define ( 'ITEM_STARRED', 0x0004);
+define ( 'ITEM_UPLINK', 0x0008);
+define ( 'ITEM_UPLINK_PRV', 0x0010);
+define ( 'ITEM_WALL', 0x0020);
+define ( 'ITEM_THREAD_TOP', 0x0040);
+
+
/**