When adding new users to Liferay, the form will display the Details, Organizations and Personal Site sections based on the following property in portal.properties:
users.form.add.main =detaiIs,organizations,personal-site
The "users.form.add.main" property is listed in the liferay-hook_6_l_0.dtd as a portal property that can be overridden with a hook. Deploying a hook with the following property in the portal.properties file will remove the Personal Site
section:
users.form.add.main =details,organizations
A. True
B. False
The bundled property file that contains settings for a development environment is:
A. portal-ext. properties
B. portal-developer, properties
C. developer, properties
D. None of the above
Portlets are placed in the Control Panel using:
A. portlet.xml
B. liferay-portlet.xml
C. liferay-plugin-package.properties
D. liferay-look-and-feel.xml
The method to retrieve an integer submitted as a form field named "widgetCount"' is:
A. GetterUtil.getInteger(actionRequest, "widgetCount")
B. RequestUtiI.getInteger(actionRequest,"widgetCount )
C. HTMLUtil.getInteger(actionRequest, "widgetCount")
D. ParamUtil.getInteger(actionRequest, "widgetCount")
E. FormUtil.getInteger(actionRequest, "widgetCount")
F. AlloyUtil.getInteger(actionRequest, "widgetCount")
The descriptor liferay-portlet.xml:
A. Defines Liferay-specific portlet features
B. Defines the categories of the Add Application menu
C. Identifies portlets that only run onLiferay
D. All of the above
Creating a Struts action hook requires the following elements in liferay-hook.xml: (Please select all correct answers.)
A.
B.
C.
D.
E.
After a portlet completes the action phase:
A. Only that portlet enters the render phase
B. All portlets on the page enter the render phase
C. Any portlet whose data has changed enters the render phase
D. Nothing happens since the render phase occurs before the action phase
The recommended way to customize how the User object indexes information is through a(n):
A. Hook plugin
B. Direct modification of the portal source
C. Ext plugin
D. Ext environment
Liferay's core remote services: (Please select all correct answers.)
A. Can only return primitive types
B. Perform permission checking
C. Must be invoked through web services
D. Are accessed through Java or web services
The recommended plugin type to use for a new servlet filter is a(n): A.Ext
B. Portlet
C. Hook
D. Theme