diff options
author | friendica <info@friendica.com> | 2012-07-21 04:05:30 -0700 |
---|---|---|
committer | friendica <info@friendica.com> | 2012-07-21 04:05:30 -0700 |
commit | e7caa986eb0b886f67221e621bb75d13142d9181 (patch) | |
tree | cce45711471d80c13170ed6f9347586cbbb7f34e /boot.php | |
parent | 6e08f398200de8a1560e14cdb4fb6c278a8e2b94 (diff) | |
download | volse-hubzilla-e7caa986eb0b886f67221e621bb75d13142d9181.tar.gz volse-hubzilla-e7caa986eb0b886f67221e621bb75d13142d9181.tar.bz2 volse-hubzilla-e7caa986eb0b886f67221e621bb75d13142d9181.zip |
account flags, account roles
Diffstat (limited to 'boot.php')
-rw-r--r-- | boot.php | 20 |
1 files changed, 20 insertions, 0 deletions
@@ -282,6 +282,26 @@ define ( 'GRAVITY_PARENT', 0); define ( 'GRAVITY_LIKE', 3); define ( 'GRAVITY_COMMENT', 6); + +/** + * Account Flags + */ + +define ( 'ACCOUNT_OK', 0x0000 ); +define ( 'ACCOUNT_UNVERIFIED', 0x0001 ); +define ( 'ACCOUNT_BLOCKED', 0x0002 ); +define ( 'ACCOUNT_EXPIRED', 0x0004 ); +define ( 'ACCOUNT_REMOVED', 0x0008 ); + +/** + * Account roles + */ + +define ( 'ACCOUNT_ROLE_ADMIN' 0x1000 ); + + + + /** * * Reverse the effect of magic_quotes_gpc if it is enabled. |