|
[Alkacon Documentation]
OpenCms Scriptlet docs
Contents
* Documentation for the user() method
Test for the user() method
Documentation for the property() method
Test for the property() method
Documentation for the link() method
Test for the link() method
Documentation for the label() method
Test for the label() method
Documentation for the img() method
Test for the img() method
Documentation for the editable() method
Documentation for the include() method
Test for the include() method
Test for the include() method with parameters
Documentation for the template() method
Test for the template() method
JSP page with two simple template elements
Documentation for the info() method
Test for the info() method
Documentation for the getNavigation() method
Test for the getNavigation() method
|
The
user() method
This method provides access to read the properties of the current user as specified in the "User
- Management" backoffice module.
Parameters:
| Name |
Description
|
| java.lang.String property |
Specifies which value to read of the current user. The following values are
supported:
-
"name": the user's login name
-
"firstname": the user's first name
-
"lastname": the user's last name
-
"email": the user's email address
-
"street": the user's street address
-
"zip": the user's zip code
-
"city": the user's city
-
"description": a clear text string with a description of the user
-
"otherstuff": custom key/value coded additional information
|
Example usage:
Get the first and the last name of the current user:
<%
org.opencms.jsp.CmsJspActionElement cms = new
org.opencms.jsp.CmsJspActionElement(pageContext, request, response);
out.println(cms.user("firstname"));
out.println(cms.user("lastname"));
%>
|
|