API17:JHtmlSelect::options
From Joomla! Documentation
(Difference between revisions)
(Layout updates) |
(Updated to r1448:247ba8d88526) |
||
| Line 8: | Line 8: | ||
<nowiki>[</nowiki>[[Description:JHtmlSelect::options|Edit Descripton]]<nowiki>]</nowiki> | <nowiki>[</nowiki>[[Description:JHtmlSelect::options|Edit Descripton]]<nowiki>]</nowiki> | ||
</span> | </span> | ||
| − | |||
<source lang="php"> | <source lang="php"> | ||
| − | public static | + | public static function options ( |
| + | $arr | ||
| + | $optKey= 'value' | ||
| + | $optText= 'text' | ||
| + | $selected=null | ||
| + | $translate=false | ||
| + | ) | ||
</source> | </source> | ||
{| class="wikitable" | {| class="wikitable" | ||
| Line 27: | Line 32: | ||
|mixed | |mixed | ||
|'value' | |'value' | ||
| − | |The key that is selected (accepts an array or a string) | + | |The key that is selected (accepts an array or a string) |
|- | |- | ||
|$optText | |$optText | ||
| Line 45: | Line 50: | ||
|- | |- | ||
|} | |} | ||
| − | + | * '''Returns''' string HTML for the select list | |
| − | string HTML for the select list | + | * '''Defined''' on line 491 of libraries/joomla/html/html/select.php |
| − | + | ||
| − | libraries/joomla/html/html/select.php | + | |
| − | + | ||
| − | + | ||
===See also=== | ===See also=== | ||
| + | * {{JVer|11.1}} '''JHtmlSelect::options source code''' on [[jplatform:html/html/select.php#cl-483|BitBucket]] | ||
| + | * {{JVer|11.1}} Class [[JHtmlSelect/11.1|JHtmlSelect]] | ||
| + | * {{JVer|11.1}} Subpackage [[Subpackage_Html/11.1|Html]] | ||
| + | * [[JHtmlSelect::options|Other versions of JHtmlSelect::options]] | ||
| + | {{SeeAlso:JHtmlSelect::options}} | ||
<span class="editsection" style="font-size:76%;"> | <span class="editsection" style="font-size:76%;"> | ||
<nowiki>[</nowiki>[[SeeAlso:JHtmlSelect::options|Edit See Also]]<nowiki>]</nowiki> | <nowiki>[</nowiki>[[SeeAlso:JHtmlSelect::options|Edit See Also]]<nowiki>]</nowiki> | ||
</span> | </span> | ||
| − | + | ===User contributed notes=== | |
| − | + | ||
| − | + | ||
| − | === | + | |
<CodeExamplesForm /> | <CodeExamplesForm /> | ||
<dpl> | <dpl> | ||
| Line 66: | Line 69: | ||
category=MethodExample | category=MethodExample | ||
include=* | include=* | ||
| + | namespace=CodeExample | ||
format= ,,, | format= ,,, | ||
</dpl> | </dpl> | ||
<noinclude>[[Category:JHtmlSelect]][[Category:JHtmlSelect::options]]</noinclude> | <noinclude>[[Category:JHtmlSelect]][[Category:JHtmlSelect::options]]</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::options
Description
Generates the option tags for an HTML select list (with no select tag surrounding the options).
Description:JHtmlSelect::options [Edit Descripton]
public static function options ( $arr $optKey= 'value' $optText= 'text' $selected=null $translate=false )
| Parameter | Type | Default | Description |
|---|---|---|---|
| $arr | string | The name of the object variable for the option text. | |
| $optKey | mixed | 'value' | The key that is selected (accepts an array or a string) |
| $optText | 'text' | ||
| $selected | null | ||
| $translate | false |
- Returns string HTML for the select list
- Defined on line 491 of libraries/joomla/html/html/select.php
See also
-
JHtmlSelect::options source code on BitBucket
-
Class JHtmlSelect
-
Subpackage Html
- Other versions of JHtmlSelect::options
SeeAlso:JHtmlSelect::options [Edit See Also]
User contributed notes
<CodeExamplesForm />
