aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes/constants.php
diff options
context:
space:
mode:
authorPaul S. Owen <psotfx@users.sourceforge.net>2001-10-11 22:05:36 +0000
committerPaul S. Owen <psotfx@users.sourceforge.net>2001-10-11 22:05:36 +0000
commitdd2033ace0ccbb711406114777dc97a34c996bdc (patch)
treed2fe2aeaa57c15e78d037af5966dbd605cec1040 /phpBB/includes/constants.php
parente2c755710fa55e69af45827c87547c687fefc1a4 (diff)
downloadforums-dd2033ace0ccbb711406114777dc97a34c996bdc.tar
forums-dd2033ace0ccbb711406114777dc97a34c996bdc.tar.gz
forums-dd2033ace0ccbb711406114777dc97a34c996bdc.tar.bz2
forums-dd2033ace0ccbb711406114777dc97a34c996bdc.tar.xz
forums-dd2033ace0ccbb711406114777dc97a34c996bdc.zip
Preliminary avatar gallery support
git-svn-id: file:///svn/phpbb/trunk@1173 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/includes/constants.php')
-rw-r--r--phpBB/includes/constants.php7
1 files changed, 6 insertions, 1 deletions
diff --git a/phpBB/includes/constants.php b/phpBB/includes/constants.php
index 14b86d640f..d2a59fc801 100644
--- a/phpBB/includes/constants.php
+++ b/phpBB/includes/constants.php
@@ -36,11 +36,16 @@ define(USER, 0);
define(ADMIN, 1);
-// User Activation
+// User related
define(USER_ACTIVATION_NONE, 0);
define(USER_ACTIVATION_SELF, 1);
define(USER_ACTIVATION_ADMIN, 2);
+define(USER_AVATAR_NONE, 0);
+define(USER_AVATAR_UPLOAD, 1);
+define(USER_AVATAR_REMOTE, 2);
+define(USER_AVATAR_GALLERY, 3);
+
// Forum state
define(FORUM_UNLOCKED, 0);