API15:JElementSection/fetchElement
From Joomla! Documentation
This Namespace has been archived - Please Do Not Edit or Create Pages in this namespace. Pages contain information for a Joomla! version which is no longer supported. It exists only as a historical reference, will not be improved and its content may be incomplete.
Description:JElementSection/fetchElement
Contents |
Syntax
fetchElement($name, $value, &$node, $control_name)
| Parameter Name | Default Value | Description |
|---|---|---|
| $name | ||
| $value | ||
| &$node | ||
| $control_name |
Defined in
libraries/joomla/html/parameter/element/section.php
Importing
jimport( 'joomla.html.parameter.element.section' );
Source Body
function fetchElement($name, $value, &$node, $control_name) { $db =& JFactory::getDBO(); $query = 'SELECT id, title FROM #__sections WHERE published = 1 AND scope = "content" ORDER BY title'; $db->setQuery($query); $options = $db->loadObjectList(); array_unshift($options, JHTML::_('select.option', '0', '- '.JText::_('Select Section').' -', 'id', 'title')); return JHTML::_('select.genericlist', $options, ''.$control_name.'['.$name.']', 'class="inputbox"', 'id', 'title', $value, $control_name.$name); }
[Edit See Also] SeeAlso:JElementSection/fetchElement
Examples
<CodeExamplesForm />
