JElementTemplateStyle/fetchElement: Difference between revisions
From Joomla! Documentation
New page:
<span class="editsection" style="font-size:76%;">
<nowiki>[</nowiki>Edit Descripton<nowiki>]</nowiki>
</span>
{{Description:JElem... |
No edit summary |
||
| Line 23: | Line 23: | ||
| | | | ||
|- | |- | ||
| | | &$node | ||
| | | | ||
| | | | ||
Revision as of 10:14, 30 March 2010
Template:Description:JElementTemplateStyle/fetchElement
Syntax
fetchElement($name, $value, &$node, $control_name)
| Parameter Name | Default Value | Description |
|---|---|---|
| $name | ||
| $value | ||
| &$node | ||
| $control_name |
Defined in
libraries/joomla/html/parameter/element/templatestyle.php
Importing
jimport( 'joomla.html.parameter.element.templatestyle' );
Source Body
public function fetchElement( $name, $value, &$node, $control_name )
{
$db = JFactory::getDBO();
$query = 'SELECT * FROM #__template_styles '
. 'WHERE client_id = 0 '
. 'AND home = 0';
$db->setQuery( $query );
$data = $db->loadObjectList();
$default = JHtml::_( 'select.option', 0, JText::_( 'JOPTION_USE_DEFAULT' ), 'id', 'description' );
array_unshift( $data, $default );
$selected = $this->_getSelected();
$html = JHTML::_( 'select.genericlist', $data, $control_name.'['.$name.']', 'class="inputbox" size="6"', 'id', 'description', $selected );
return $html;
}
[Edit See Also] Template:SeeAlso:JElementTemplateStyle/fetchElement
Examples
<CodeExamplesForm />