root/releases/0.1.2a/units/profile/function_editfield_defaults.php

Revision 2, 2.4 kB (checked in by sven, 3 years ago)

importing elgg-0.1.1a

Line 
1 <?php
2
3     // Initial profile data
4
5         $data['profile:details'][] = array("Who am I?","biography","longtext","A short introduction to you.");
6         $data['profile:details'][] = array("Postal address","postaladdress","mediumtext");
7         $data['profile:details'][] = array("Email address","emailaddress","email");
8         $data['profile:details'][] = array("Work telephone","workphone","text");
9         $data['profile:details'][] = array("Home telephone","homephone","text");
10         $data['profile:details'][] = array("Mobile telephone","mobphone","text");
11         $data['profile:details'][] = array("Official website address","workweb","web","The URL to your official website, if you have one.");
12         $data['profile:details'][] = array("Personal website address","personalweb","web","The URL to your personal website, if you have one.");
13         $data['profile:details'][] = array("ICQ number","icq","icq");
14         $data['profile:details'][] = array("MSN chat","msn","msn");
15         $data['profile:details'][] = array("AIM screenname","aim","aim");
16         $data['profile:details'][] = array("Skype username","skype","skype");
17         $data['profile:details'][] = array("Jabber username","jabber","text");
18         $data['profile:details'][] = array("Interests","interests","keywords","Separated with commas.");
19         $data['profile:details'][] = array("Likes","likes","keywords","Separated with commas.");
20         $data['profile:details'][] = array("Dislikes","dislikes","keywords","Separated with commas.");
21         $data['profile:details'][] = array("Occupation","occupation","text");
22         $data['profile:details'][] = array("Industry","industry","text");
23         $data['profile:details'][] = array("Company / Institution","organisation","text");
24         $data['profile:details'][] = array("Job Title","jobtitle","text");
25         $data['profile:details'][] = array("Job Description","jobdescription","text");
26         $data['profile:details'][] = array("Career Goals","careergoals","longtext","Freeform: let colleagues and potential employers know what you'd like to get out of your career.");
27         $data['profile:details'][] = array("Level of Education","educationlevel","text");
28         $data['profile:details'][] = array("High School","highschool","text");
29         $data['profile:details'][] = array("University / College","university","text");
30         $data['profile:details'][] = array("Degree","universitydegree","text");
31         $data['profile:details'][] = array("Main Skills","skills","keywords","Separated with commas.");
32         
33 ?>
Note: See TracBrowser for help on using the browser.