Package org.opencms.widgets
Class CmsCalendarWidget
java.lang.Object
org.opencms.widgets.A_CmsWidget
org.opencms.widgets.CmsCalendarWidget
- All Implemented Interfaces:
I_CmsADEWidget
,I_CmsWidget
Provides a DHTML calendar widget, for use on a widget dialog.
- Since:
- 6.0.0
-
Nested Class Summary
Nested classes/interfaces inherited from class org.opencms.widgets.A_CmsWidget
A_CmsWidget.CmsDummyWidgetDialog
-
Field Summary
Fields inherited from class org.opencms.widgets.A_CmsWidget
HELP_POSTFIX, LABEL_PREFIX
-
Constructor Summary
ConstructorDescriptionCreates a new calendar widget.CmsCalendarWidget
(String configuration) Creates a new calendar widget with the given configuration. -
Method Summary
Modifier and TypeMethodDescriptionstatic String
calendarIncludes
(Locale locale) Creates the HTML JavaScript and stylesheet includes required by the calendar for the head of the page.static String
calendarIncludes
(Locale locale, String style) Creates the HTML JavaScript and stylesheet includes required by the calendar for the head of the page.static String
calendarInit
(CmsMessages messages, String inputFieldId, String triggerButtonId, String align, boolean singleClick, boolean weekNumbers, boolean mondayFirst, String dateStatusFunc, boolean showTime) Generates the HTML to initialize the JavaScript calendar element on the end of a page.static long
getCalendarDate
(CmsMessages messages, String dateString, boolean useTime) Creates the time in milliseconds from the given parameter.static String
getCalendarJavaDateFormat
(String dateFormat) Parses the JavaScript calendar date format to the java patterns of SimpleDateFormat.static String
getCalendarLocalizedTime
(Locale locale, CmsMessages messages, long timestamp) Returns the given timestamp as String formatted in a localized pattern.getConfiguration
(CmsObject cms, A_CmsXmlContentValue schemaType, CmsMessages messages, CmsResource resource, Locale contentLocale) Returns the configuration string for the ADE content editor widget.Returns a list of CSS resources required by the widget.Returns the default display type of this widget.getDialogIncludes
(CmsObject cms, I_CmsWidgetDialog widgetDialog) Generates the necessary JavaScript inclusion code for this widget.getDialogWidget
(CmsObject cms, I_CmsWidgetDialog widgetDialog, I_CmsWidgetParameter param) Generates the widget HTML for the provided widget parameter.Returns the java script initialization call.Returns a list of java script resources required by the widget.Returns the class name of the widget.getWidgetStringValue
(CmsObject cms, I_CmsWidgetDialog widgetDialog, I_CmsWidgetParameter param) Returns the
processed according to the output rules of this widget and the given widget dialog.I_CmsWidgetParameter.getStringValue(CmsObject)
boolean
Returns if this is an internal widget.Creates a duplicate of this widget instance.void
setEditorValue
(CmsObject cms, Map<String, String[]> formParameters, I_CmsWidgetDialog widgetDialog, I_CmsWidgetParameter param) Sets the value of in the given widget parameter by reading the "right" value from the offered map of parameters.Methods inherited from class org.opencms.widgets.A_CmsWidget
equals, getConfiguration, getDialogHtmlEnd, getDialogInitCall, getDialogInitMethod, getHelpBubble, getHelpKey, getHelpText, getJsHelpMouseHandler, getJSIncludeFile, getLabelKey, hashCode, isCompactViewEnabled, setConfiguration
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface org.opencms.widgets.I_CmsWidget
getConfiguration, getDialogHtmlEnd, getDialogInitCall, getDialogInitMethod, getHelpBubble, getHelpText, isCompactViewEnabled, setConfiguration
-
Constructor Details
-
CmsCalendarWidget
public CmsCalendarWidget()Creates a new calendar widget. -
CmsCalendarWidget
Creates a new calendar widget with the given configuration.- Parameters:
configuration
- the configuration to use
-
-
Method Details
-
calendarIncludes
Creates the HTML JavaScript and stylesheet includes required by the calendar for the head of the page.The default
"opencms"
style is used.- Parameters:
locale
- the locale to use for the calendar- Returns:
- the necessary HTML code for the js and stylesheet includes
- See Also:
-
calendarIncludes
Creates the HTML JavaScript and stylesheet includes required by the calendar for the head of the page.- Parameters:
locale
- the locale to use for the calendarstyle
- the name of the used calendar style, e.g. "system", "blue"- Returns:
- the necessary HTML code for the js and stylesheet includes
-
calendarInit
public static String calendarInit(CmsMessages messages, String inputFieldId, String triggerButtonId, String align, boolean singleClick, boolean weekNumbers, boolean mondayFirst, String dateStatusFunc, boolean showTime) Generates the HTML to initialize the JavaScript calendar element on the end of a page.This method must be called at the end of a HTML page, e.g. before the closing <body> tag.
- Parameters:
messages
- the messages to use (for date and time formats)inputFieldId
- the ID of the input field where the date is pasted totriggerButtonId
- the ID of the button which triggers the calendaralign
- initial position of the calendar popup elementsingleClick
- if true, a single click selects a date and closes the calendar, otherwise calendar is closed by doubleclickweekNumbers
- show the week numbers in the calendar or notmondayFirst
- show monday as first day of weekdateStatusFunc
- name of the function which determines if/how a date should be disabledshowTime
- true if the time selector should be shown, otherwise false- Returns:
- the HTML code to initialize a calendar poup element
-
getCalendarDate
public static long getCalendarDate(CmsMessages messages, String dateString, boolean useTime) throws ParseException Creates the time in milliseconds from the given parameter.- Parameters:
messages
- the messages that contain the time format definitionsdateString
- the String representation of the dateuseTime
- true if the time should be parsed, too, otherwise false- Returns:
- the time in milliseconds
- Throws:
ParseException
- if something goes wrong
-
getCalendarJavaDateFormat
Parses the JavaScript calendar date format to the java patterns of SimpleDateFormat.- Parameters:
dateFormat
- the dateformat String of the JS calendar- Returns:
- the parsed SimpleDateFormat pattern String
-
getCalendarLocalizedTime
Returns the given timestamp as String formatted in a localized pattern.- Parameters:
locale
- the locale for the time formatmessages
- the messages that contain the time format definitionstimestamp
- the time to format- Returns:
- the given timestamp as String formatted in a localized pattern
-
getConfiguration
public String getConfiguration(CmsObject cms, A_CmsXmlContentValue schemaType, CmsMessages messages, CmsResource resource, Locale contentLocale) Description copied from interface:I_CmsADEWidget
Returns the configuration string for the ADE content editor widget.- Specified by:
getConfiguration
in interfaceI_CmsADEWidget
- Parameters:
cms
- the OpenCms contextschemaType
- the schema typemessages
- the messagesresource
- the edited resourcecontentLocale
- the content locale- Returns:
- the configuration string
- See Also:
-
getCssResourceLinks
Description copied from interface:I_CmsADEWidget
Returns a list of CSS resources required by the widget.- Specified by:
getCssResourceLinks
in interfaceI_CmsADEWidget
- Parameters:
cms
- the current OpenCms context- Returns:
- the required CSS resource links
- See Also:
-
getDefaultDisplayType
Description copied from interface:I_CmsADEWidget
Returns the default display type of this widget.- Specified by:
getDefaultDisplayType
in interfaceI_CmsADEWidget
- Returns:
- the default display type
- See Also:
-
getDialogIncludes
Description copied from interface:I_CmsWidget
Generates the necessary JavaScript inclusion code for this widget.- Specified by:
getDialogIncludes
in interfaceI_CmsWidget
- Overrides:
getDialogIncludes
in classA_CmsWidget
- Parameters:
cms
- the current users OpenCms contextwidgetDialog
- the dialog where the widget is used on- Returns:
- the JavaScript inclusion code
- See Also:
-
getDialogWidget
public String getDialogWidget(CmsObject cms, I_CmsWidgetDialog widgetDialog, I_CmsWidgetParameter param) Description copied from interface:I_CmsWidget
Generates the widget HTML for the provided widget parameter.- Specified by:
getDialogWidget
in interfaceI_CmsWidget
- Parameters:
cms
- an initialized instance of a CmsObjectwidgetDialog
- the dialog where the widget is used onparam
- the widget parameter to generate the widget for- Returns:
- the widget HTML for the provided widget parameter
- See Also:
-
getInitCall
Description copied from interface:I_CmsADEWidget
Returns the java script initialization call.- Specified by:
getInitCall
in interfaceI_CmsADEWidget
- Returns:
- the java script initialization call
- See Also:
-
getJavaScriptResourceLinks
Description copied from interface:I_CmsADEWidget
Returns a list of java script resources required by the widget.- Specified by:
getJavaScriptResourceLinks
in interfaceI_CmsADEWidget
- Parameters:
cms
- the current OpenCms context- Returns:
- the required java script resource links
- See Also:
-
getWidgetName
Description copied from interface:I_CmsADEWidget
Returns the class name of the widget.- Specified by:
getWidgetName
in interfaceI_CmsADEWidget
- Returns:
- the class name
- See Also:
-
getWidgetStringValue
public String getWidgetStringValue(CmsObject cms, I_CmsWidgetDialog widgetDialog, I_CmsWidgetParameter param) Description copied from interface:I_CmsWidget
Returns the
processed according to the output rules of this widget and the given widget dialog.I_CmsWidgetParameter.getStringValue(CmsObject)
- Specified by:
getWidgetStringValue
in interfaceI_CmsWidget
- Overrides:
getWidgetStringValue
in classA_CmsWidget
- Parameters:
cms
- the current users OpenCms contextwidgetDialog
- the dialog where the widget is used onparam
- the widget parameter to generate the widget for- Returns:
- the
processed according to the output rules of this widgetI_CmsWidgetParameter.getStringValue(CmsObject)
- See Also:
-
isInternal
Description copied from interface:I_CmsADEWidget
Returns if this is an internal widget.Only widgets belonging to the OpenCms core should be marked as internal.
- Specified by:
isInternal
in interfaceI_CmsADEWidget
- Returns:
true
if this is an internal widget- See Also:
-
newInstance
Description copied from interface:I_CmsWidget
Creates a duplicate of this widget instance.- Specified by:
newInstance
in interfaceI_CmsWidget
- Returns:
- a duplicate of this widget instance
- See Also:
-
setEditorValue
public void setEditorValue(CmsObject cms, Map<String, String[]> formParameters, I_CmsWidgetDialog widgetDialog, I_CmsWidgetParameter param) Description copied from interface:I_CmsWidget
Sets the value of in the given widget parameter by reading the "right" value from the offered map of parameters.- Specified by:
setEditorValue
in interfaceI_CmsWidget
- Overrides:
setEditorValue
in classA_CmsWidget
- Parameters:
cms
- the current users OpenCms contextformParameters
- the map of parameters to get the value fromwidgetDialog
- the dialog where the widget is used onparam
- the widget parameter to generate the widget for- See Also:
-