API16:JElementCalendar/fetchElement
From Joomla! Documentation
<! 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
public 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 transcluded page call, red link never existed >
Examples
Code Examples