API16

Difference between revisions of "JElementEditors/fetchElement"

From Joomla! Documentation

< API16:JElementEditors
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:JElementEditors/fetchElement|Edit Descripton]]<nowiki>]</nowiki>
+
<nowiki>[<! removed edit link to red link >]</nowiki>
 
</span>
 
</span>
  
{{Description:JElementEditors/fetchElement}}
+
<! removed transcluded page call, red link never existed >
  
 
===Syntax===
 
===Syntax===
Line 68: Line 67:
  
 
<span class="editsection" style="font-size:76%;">
 
<span class="editsection" style="font-size:76%;">
<nowiki>[</nowiki>[[SeeAlso:JElementEditors/fetchElement|Edit See Also]]<nowiki>]</nowiki>
+
<nowiki>[<! removed edit link to red link >]</nowiki>
 
</span>
 
</span>
{{SeeAlso:JElementEditors/fetchElement}}
+
<! removed transcluded page call, red link never existed >
  
 
===Examples===
 
===Examples===
Line 83: Line 82:
 
  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/editors.php

Importing[edit]

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

Source Body[edit]

public function fetchElement($name, $value, &$node, $control_name)
{
        $db             = & JFactory::getDbo();
        $user   = & JFactory::getUser();

        // compile list of the editors
        $query = 'SELECT element AS value, name AS text'
        . ' FROM #__extensions'
        . ' WHERE folder = "editors"'
        . ' AND type = "plugin"'
        . ' AND enabled = 1'
        . ' ORDER BY ordering, name'
        ;
        $db->setQuery($query);
        $editors = $db->loadObjectList();

        array_unshift($editors, JHtml::_('select.option',  '', '- '. JText::_('SELECT_EDITOR') .' -'));

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

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

Examples[edit]

<CodeExamplesForm />