API16

JElementSQL/fetchElement: Difference between revisions

From Joomla! Documentation

Doxiki (talk | contribs)
New page: <span class="editsection" style="font-size:76%;"> <nowiki>[</nowiki>Edit Descripton<nowiki>]</nowiki> </span> {{Description:JElementSQL/fet...
 
Doxiki (talk | contribs)
No edit summary
Line 23: Line 23:
|   
|   
|-
|-
|  
| &$node
|  
|  
|   
|   

Revision as of 10:14, 30 March 2010

[Edit Descripton]

Template:Description:JElementSQL/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/sql.php

Importing

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

Source Body

public function fetchElement($name, $value, &$node, $control_name)
{
        $db                     = & JFactory::getDbo();
        $db->setQuery($node->attributes('query'));
        $key = ($node->attributes('key_field') ? $node->attributes('key_field') : 'value');
        $val = ($node->attributes('value_field') ? $node->attributes('value_field') : $name);

        $options = $db->loadObjectlist();

        // Check for an error.
        if ($db->getErrorNum()) {
                JError::raiseWarning(500, $db->getErrorMsg());
                return false;
        }

        if (!$options) {
                $options = array();
        }

        return JHtml::_('select.genericlist', $options, $control_name.'['.$name.']',
                array(
                        'id' => $control_name.$name,
                        'list.attr' => 'class="inputbox"',
                        'list.select' => $value,
                        'option.key' => $key,
                        'option.text' => $val
                )
        );
}

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

Examples

<CodeExamplesForm />