aboutsummaryrefslogtreecommitdiffstats
path: root/boot.php
diff options
context:
space:
mode:
authorfriendica <info@friendica.com>2012-10-06 01:51:59 -0700
committerfriendica <info@friendica.com>2012-10-06 01:51:59 -0700
commit1e2da716b0abaa521fa0f2a10e795ee0d0f9da72 (patch)
treee6aa0f920ae5de4256b4565a86a1c1971b856508 /boot.php
parent18fc97fd78a0e89937908c1148f3e0f6e42f639e (diff)
downloadvolse-hubzilla-1e2da716b0abaa521fa0f2a10e795ee0d0f9da72.tar.gz
volse-hubzilla-1e2da716b0abaa521fa0f2a10e795ee0d0f9da72.tar.bz2
volse-hubzilla-1e2da716b0abaa521fa0f2a10e795ee0d0f9da72.zip
item flags
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);
+
+
/**