aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/common.php
diff options
context:
space:
mode:
authorMeik Sievertsen <acydburn@phpbb.com>2004-01-10 12:23:24 +0000
committerMeik Sievertsen <acydburn@phpbb.com>2004-01-10 12:23:24 +0000
commit994973d8ee97dd3fe88a08d9171fb918b90b0c28 (patch)
tree66eb93eb31042ae8d3eda522e4305e0b4e741884 /phpBB/common.php
parent62429cb9fbec7192478bbdf9148324300445485f (diff)
downloadforums-994973d8ee97dd3fe88a08d9171fb918b90b0c28.tar
forums-994973d8ee97dd3fe88a08d9171fb918b90b0c28.tar.gz
forums-994973d8ee97dd3fe88a08d9171fb918b90b0c28.tar.bz2
forums-994973d8ee97dd3fe88a08d9171fb918b90b0c28.tar.xz
forums-994973d8ee97dd3fe88a08d9171fb918b90b0c28.zip
custom profile fields.
Not finished, committed to let us discuss about the next steps -> BartVB git-svn-id: file:///svn/phpbb/trunk@4740 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/common.php')
-rw-r--r--phpBB/common.php7
1 files changed, 7 insertions, 0 deletions
diff --git a/phpBB/common.php b/phpBB/common.php
index 3bda138d6b..a528ccd395 100644
--- a/phpBB/common.php
+++ b/phpBB/common.php
@@ -142,6 +142,13 @@ define('THUMB_CAT', 4); // Not used within the database, only while displaying p
// BBCode UID length
define('BBCODE_UID_LEN', 5);
+define('FIELD_INT', 1);
+define('FIELD_STRING', 2);
+define('FIELD_TEXT', 3);
+define('FIELD_BOOL', 4);
+define('FIELD_DROPDOWN', 5);
+define('FIELD_DATE', 6);
+
// Table names
define('ACL_GROUPS_TABLE', $table_prefix.'auth_groups');
define('ACL_OPTIONS_TABLE', $table_prefix.'auth_options');