API15:JElementCalendar/fetchElement
From Joomla! Documentation
This Namespace has been archived - Please Do Not Edit or Create Pages in this namespace. Pages contain information for a Joomla! version which is no longer supported. It exists only as a historical reference, will not be improved and its content may be incomplete.
[<! removed edit link to red link >]
<! removed transcluded page call, red link never existed >
Contents |
Syntax
fetchElement($name, $value, &$node, $control_name)
| Parameter Name | Default Value | Description |
|---|---|---|
| $name | ||
| $value | ||
| &$node | ||
| $control_name |
Defined in
libraries/joomla/html/parameter/element/calendar.php
Importing
jimport( 'joomla.html.parameter.element.calendar' );
Source Body
function fetchElement($name, $value, &$node, $control_name) { JHTML::_('behavior.calendar'); //load the calendar behavior $format = ( $node->attributes('format') ? $node->attributes('format') : '%Y-%m-%d' ); $class = $node->attributes('class') ? $node->attributes('class') : 'inputbox'; $id = $control_name.$name; $name = $control_name.'['.$name.']'; return JHTML::_('calendar', $value, $name, $id, $format, array('class' => $class)); }
[<! removed edit link to red link >] <! removed transcluded page call, red link never existed >
Examples
<CodeExamplesForm />
