Added Help, code cleanup, some template changes

This commit is contained in:
Yung Han Khoe 2008-05-19 18:24:27 +00:00
parent 4b120aed10
commit 9968a25729
3 changed files with 295 additions and 86 deletions

View file

@ -21,6 +21,16 @@ our $I18N = {
lastUpdated => 1081514049
},
'templateId' => {
message => q|The ID of the template used to display the UserList Asset.|,
lastUpdated => 1168897708,
},
'showGroupId' => {
message => q|Only users that are in this group will be shown.|,
lastUpdated => 1081514049
},
'Group to show label' => {
message => q|Group to show|,
lastUpdated => 1081514049
@ -32,6 +42,11 @@ our $I18N = {
lastUpdated => 1081514049
},
'hideGroupId' => {
message => q|Users in this group will be hidden.|,
lastUpdated => 1081514049
},
'Group to hide label' => {
message => q|Group to hide|,
lastUpdated => 1081514049
@ -42,6 +57,11 @@ our $I18N = {
lastUpdated => 1081514049
},
'usersPerPage' => {
message => q|The number of users per page|,
lastUpdated => 1081514049
},
'Users per page label' => {
message => q|Users per page|,
lastUpdated => 1081514049
@ -52,6 +72,12 @@ our $I18N = {
lastUpdated => 1081514049
},
'showOnlyVisibleAsNamed' => {
message => q|Boolean. If true then only fields that are set to 'visible' in the user profile settings
will be available as named tmpl_vars|,
lastUpdated => 1081514049
},
'showOnlyVisibleAsNamed label' => {
message => q|Show only visible fields as named tmpl_vars|,
lastUpdated => 1081514049
@ -63,6 +89,12 @@ will be available as named tmpl_vars|,
lastUpdated => 1081514049
},
'alphabet' => {
message => q|The alphabet that is used for the alphabet search. This is a string of comma
seperated values|,
lastUpdated => 1081514049
},
'alphabet label' => {
message => q|Alphabet|,
lastUpdated => 1081514049
@ -105,6 +137,119 @@ seperated values|,
},
'searchFormHeader' => {
message => q|The header tag for the search form.|,
lastUpdated => 1081514049
},
'searchFormSubmit' => {
message => q|The submit form element for the search form|,
lastUpdated => 1081514049
},
'searchFormFooter' => {
message => q|The footer tag for the search form|,
lastUpdated => 1081514049
},
'searchFormTypeOr' => {
message => q|A hidden form element to set the search type to 'or'.|,
lastUpdated => 1081514049
},
'searchFormTypeAnd' => {
message => q|A hidden form element to set the search type to 'and'.|,
lastUpdated => 1081514049
},
'searchFormTypeSelect' => {
message => q|A select box to let the user select the search type.|,
lastUpdated => 1081514049
},
'searchFormQuery_form' => {
message => q|A text input for the search query.|,
lastUpdated => 1081514049
},
'numberOfProfileFields' => {
message => q|The number of profile fields.|,
lastUpdated => 1081514049
},
'alphabetSearch_loop' => {
message => q|A loop that contains elements to create an alphabetical search.|,
lastUpdated => 1081514049
},
'alphabetSearch_loop_label' => {
message => q|The label for this alphabet search query. Usually one letter of the alphabet.|,
lastUpdated => 1081514049
},
'alphabetSearch_loop_hasResults' => {
message => q|A conditional that is true if there are any results for this alphabet query.|,
lastUpdated => 1081514049
},
'alphabetSearch_loop_searchURL' => {
message => q|The url to do an alphabet search on this query.|,
lastUpdated => 1081514049
},
'user_loop' => {
message => q|A loop containing the users that are listed by the UserList.|,
lastUpdated => 1081514049
},
'user_name' => {
message => q|The username of the user.|,
lastUpdated => 1081514049
},
'user_id' => {
message => q|The userId of the user|,
lastUpdated => 1081514049
},
'user_profile_PROFILEFIELDNAME_value' => {
message => q|The value of the profile field with the name PROFILEFIELDNAME in the users user
profile. Example <tmpl_var user_profile_firstName_value>|,
lastUpdated => 1081514049
},
'user_profile_emailNotPublic' => {
message => q|A conditional that is true if the users email address is not public.|,
lastUpdated => 1081514049
},
'user_profile_loop' => {
message => q|A loop containing the users profile fields.|,
lastUpdated => 1081514049
},
'profile_emailNotPublic' => {
message => q|A conditional that is true if the users email address is not public. It will only be
true for the 'email' profile field.|,
lastUpdated => 1081514049
},
'profile_value' => {
message => q|The value of the profile field for this user.|,
lastUpdated => 1081514049
},
'profileField_loop' => {
message => q|A loop contining profile fields|,
lastUpdated => 1081514049
},
'profileField_label' => {
message => q|The label for a profile field|,
lastUpdated => 1081514049
},
};
1;