API15

JElementSection/fetchElement

From Joomla! Documentation

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

The "API15" 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:JElementSection/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/section.php

Importing[edit]

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

Source Body[edit]

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] Template:SeeAlso:JElementSection/fetchElement

Examples[edit]

<CodeExamplesForm />