aboutsummaryrefslogtreecommitdiff
path: root/mod/profile/start.php
diff options
context:
space:
mode:
Diffstat (limited to 'mod/profile/start.php')
-rw-r--r--mod/profile/start.php17
1 files changed, 17 insertions, 0 deletions
diff --git a/mod/profile/start.php b/mod/profile/start.php
index baebf802f..03fe0eda1 100644
--- a/mod/profile/start.php
+++ b/mod/profile/start.php
@@ -34,6 +34,23 @@
));
}
+ // For now, we'll hard code the profile items as follows:
+ // TODO make this user configurable
+ $CONFIG->profile = array(
+
+ // Language short codes must be of the form "profile:key"
+ // where key is the array key below
+ 'description' => 'longtext',
+ 'location' => 'tags',
+ 'interests' => 'tags',
+ 'skills' => 'tags',
+ 'contactemail' => 'email',
+ 'phone' => 'text',
+ 'mobile' => 'text',
+ 'website' => 'url',
+
+ );
+
// Register a page handler, so we can have nice URLs
register_page_handler('profile','profile_page_handler');