API16

JElementCalendar/fetchElement

From Joomla! Documentation

< API16:JElementCalendar
Revision as of 17:49, 22 March 2010 by Doxiki (talk | contribs) (New page: <span class="editsection" style="font-size:76%;"> <nowiki>[</nowiki>Edit Descripton<nowiki>]</nowiki> </span> {{Description:JElementCa...)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

The "API16" namespace is an archived namespace. This page contains information for a Joomla! version which is no longer supported. It exists only as a historical reference, it will not be improved and its content may be incomplete and/or contain broken links.

[Edit Descripton]

Template:Description:JElementCalendar/fetchElement

Syntax[edit]

fetchElement($name, $value, &$node, $control_name)
Parameter Name Default Value Description
$name
$value
$control_name

Defined in[edit]

libraries/joomla/html/parameter/element/calendar.php

Importing[edit]

jimport( 'joomla.html.parameter.element.calendar' );

Source Body[edit]

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));
}

[Edit See Also] Template:SeeAlso:JElementCalendar/fetchElement

Examples[edit]

<CodeExamplesForm />