API15:JElementCalendar/fetchElement
From Joomla! Documentation
[<! removed edit link to red link >]
<! removed transcluded page call, red link never existed >
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
Code Examples