diff options
author | friendica <info@friendica.com> | 2015-01-29 14:51:41 -0800 |
---|---|---|
committer | friendica <info@friendica.com> | 2015-01-29 14:51:41 -0800 |
commit | ff68ea608786a698ad46637ef13854ac1b1e6beb (patch) | |
tree | 5e9bec7525754dda60c8c08bc00802160efa202c /boot.php | |
parent | a2cdd1499c968c31ae1b95933231f80be5fc639b (diff) | |
download | volse-hubzilla-ff68ea608786a698ad46637ef13854ac1b1e6beb.tar.gz volse-hubzilla-ff68ea608786a698ad46637ef13854ac1b1e6beb.tar.bz2 volse-hubzilla-ff68ea608786a698ad46637ef13854ac1b1e6beb.zip |
more message restrict conversions
Diffstat (limited to 'boot.php')
-rwxr-xr-x | boot.php | 13 |
1 files changed, 9 insertions, 4 deletions
@@ -520,20 +520,25 @@ define ( 'ACCOUNT_ROLE_ADMIN', 0x1000 ); */ define ( 'ITEM_VISIBLE', 0x0000); -define ( 'ITEM_HIDDEN', 0x0001); +//define ( 'ITEM_HIDDEN', 0x0001); define ( 'ITEM_BLOCKED', 0x0002); define ( 'ITEM_MODERATED', 0x0004); define ( 'ITEM_SPAM', 0x0008); -define ( 'ITEM_DELETED', 0x0010); +//define ( 'ITEM_DELETED', 0x0010); define ( 'ITEM_UNPUBLISHED', 0x0020); -define ( 'ITEM_WEBPAGE', 0x0040); // is a static web page, not a conversational item +//define ( 'ITEM_WEBPAGE', 0x0040); // is a static web page, not a conversational item define ( 'ITEM_DELAYED_PUBLISH', 0x0080); define ( 'ITEM_BUILDBLOCK', 0x0100); // Named thusly to make sure nobody confuses this with ITEM_BLOCKED -define ( 'ITEM_PDL', 0x0200); // Page Description Language - e.g. Comanche +//define ( 'ITEM_PDL', 0x0200); // Page Description Language - e.g. Comanche define ( 'ITEM_BUG', 0x0400); // Is a bug, can be used by the internal bug tracker define ( 'ITEM_PENDING_REMOVE', 0x0800); // deleted, notification period has lapsed // Don't make us evaluate this same item again. +define ( 'ITEM_TYPE_POST', 0 ); +define ( 'ITEM_TYPE_BLOCK', 1 ); +define ( 'ITEM_TYPE_PDL', 2 ); +define ( 'ITEM_TYPE_WEBPAGE', 3 ); + define ( 'DBTYPE_MYSQL', 0 ); define ( 'DBTYPE_POSTGRES', 1 ); |