API16

Difference between revisions of "JElementCalendar/fetchElement"

From Joomla! Documentation

< API16:JElementCalendar
m (removing red link to edit, no existant pages)
Line 1: Line 1:
 
 
<span class="editsection" style="font-size:76%;">
 
<span class="editsection" style="font-size:76%;">
<nowiki>[</nowiki>[[Description:JElementCalendar/fetchElement|Edit Descripton]]<nowiki>]</nowiki>
+
<nowiki>[<! removed edit link to red link >]</nowiki>
 
</span>
 
</span>
  
{{Description:JElementCalendar/fetchElement}}
+
<! removed transcluded page call, red link never existed >
  
 
===Syntax===
 
===Syntax===
Line 53: Line 52:
  
 
<span class="editsection" style="font-size:76%;">
 
<span class="editsection" style="font-size:76%;">
<nowiki>[</nowiki>[[SeeAlso:JElementCalendar/fetchElement|Edit See Also]]<nowiki>]</nowiki>
+
<nowiki>[<! removed edit link to red link >]</nowiki>
 
</span>
 
</span>
{{SeeAlso:JElementCalendar/fetchElement}}
+
<! removed transcluded page call, red link never existed >
  
 
===Examples===
 
===Examples===
Line 68: Line 67:
 
  format= ,,,
 
  format= ,,,
 
</dpl>
 
</dpl>
 +
[[Category:Archived pages API16]]

Revision as of 00:03, 13 May 2013

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.

[<! removed edit link to red link >]

<! removed transcluded page call, red link never existed >

Syntax[edit]

fetchElement($name, $value, &$node, $control_name)
Parameter Name Default Value Description
$name
$value
&$node
$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));
}

[<! removed edit link to red link >] <! removed transcluded page call, red link never existed >

Examples[edit]

<CodeExamplesForm />