From 8fbbdf8785a9640e20bd4b4c59a02fbb3cac8337 Mon Sep 17 00:00:00 2001 From: ben Date: Mon, 28 Apr 2008 10:36:35 +0000 Subject: The profile now has fields set in start.php. TODO: make those user editable, once we have the admin panel ... git-svn-id: https://code.elgg.org/elgg/trunk@543 36083f99-b078-4883-b0ff-0f9b5a30f544 --- mod/profile/start.php | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) (limited to 'mod/profile/start.php') 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'); -- cgit v1.2.3