API17:JHtmlSelect::genericlist
From Joomla! Documentation
(Difference between revisions)
(Layout updates) |
(Updated to r1448:247ba8d88526) |
||
| Line 8: | Line 8: | ||
<nowiki>[</nowiki>[[Description:JHtmlSelect::genericlist|Edit Descripton]]<nowiki>]</nowiki> | <nowiki>[</nowiki>[[Description:JHtmlSelect::genericlist|Edit Descripton]]<nowiki>]</nowiki> | ||
</span> | </span> | ||
| − | |||
<source lang="php"> | <source lang="php"> | ||
| − | public static | + | public static function genericlist ( |
| + | $data | ||
| + | $name | ||
| + | $attribs=null | ||
| + | $optKey= 'value' | ||
| + | $optText= 'text' | ||
| + | $selected=null | ||
| + | $idtag=false | ||
| + | $translate=false | ||
| + | ) | ||
</source> | </source> | ||
{| class="wikitable" | {| class="wikitable" | ||
| Line 32: | Line 40: | ||
|mixed | |mixed | ||
|null | |null | ||
| − | |The key that is selected (accepts an array or a string). | + | |The key that is selected (accepts an array or a string). |
|- | |- | ||
|$optKey | |$optKey | ||
| Line 60: | Line 68: | ||
|- | |- | ||
|} | |} | ||
| − | + | * '''Returns''' string HTML for the select list. | |
| − | string HTML for the select list. | + | * '''Defined''' on line 86 of libraries/joomla/html/html/select.php |
| − | + | ||
| − | libraries/joomla/html/html/select.php | + | |
| − | + | ||
| − | + | ||
===See also=== | ===See also=== | ||
| + | * {{JVer|11.1}} '''JHtmlSelect::genericlist source code''' on [[jplatform:html/html/select.php#cl-78|BitBucket]] | ||
| + | * {{JVer|11.1}} Class [[JHtmlSelect/11.1|JHtmlSelect]] | ||
| + | * {{JVer|11.1}} Subpackage [[Subpackage_Html/11.1|Html]] | ||
| + | * [[JHtmlSelect::genericlist|Other versions of JHtmlSelect::genericlist]] | ||
| + | {{SeeAlso:JHtmlSelect::genericlist}} | ||
<span class="editsection" style="font-size:76%;"> | <span class="editsection" style="font-size:76%;"> | ||
<nowiki>[</nowiki>[[SeeAlso:JHtmlSelect::genericlist|Edit See Also]]<nowiki>]</nowiki> | <nowiki>[</nowiki>[[SeeAlso:JHtmlSelect::genericlist|Edit See Also]]<nowiki>]</nowiki> | ||
</span> | </span> | ||
| − | + | ===User contributed notes=== | |
| − | + | ||
| − | + | ||
| − | === | + | |
<CodeExamplesForm /> | <CodeExamplesForm /> | ||
<dpl> | <dpl> | ||
| Line 81: | Line 87: | ||
category=MethodExample | category=MethodExample | ||
include=* | include=* | ||
| + | namespace=CodeExample | ||
format= ,,, | format= ,,, | ||
</dpl> | </dpl> | ||
<noinclude>[[Category:JHtmlSelect]][[Category:JHtmlSelect::genericlist]]</noinclude> | <noinclude>[[Category:JHtmlSelect]][[Category:JHtmlSelect::genericlist]]</noinclude> | ||
Revision as of 21:08, 27 April 2011
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.
JHtmlSelect::genericlist
Description
Generates an HTML selection list.
Description:JHtmlSelect::genericlist [Edit Descripton]
public static function genericlist ( $data $name $attribs=null $optKey= 'value' $optText= 'text' $selected=null $idtag=false $translate=false )
| Parameter | Type | Default | Description |
|---|---|---|---|
| $data | string | The name of the object variable for the option value. If set to null, the index of the value array is used. | |
| $name | string | The name of the object variable for the option text. | |
| $attribs | mixed | null | The key that is selected (accepts an array or a string). |
| $optKey | 'value' | ||
| $optText | 'text' | ||
| $selected | null | ||
| $idtag | false | ||
| $translate | false |
- Returns string HTML for the select list.
- Defined on line 86 of libraries/joomla/html/html/select.php
See also
-
JHtmlSelect::genericlist source code on BitBucket
-
Class JHtmlSelect
-
Subpackage Html
- Other versions of JHtmlSelect::genericlist
SeeAlso:JHtmlSelect::genericlist [Edit See Also]
User contributed notes
<CodeExamplesForm />
