API17:JHtmlSelect::radiolist
From Joomla! Documentation
(Difference between revisions)
(Layout updates) |
(Updated to r1448:247ba8d88526) |
||
| Line 8: | Line 8: | ||
<nowiki>[</nowiki>[[Description:JHtmlSelect::radiolist|Edit Descripton]]<nowiki>]</nowiki> | <nowiki>[</nowiki>[[Description:JHtmlSelect::radiolist|Edit Descripton]]<nowiki>]</nowiki> | ||
</span> | </span> | ||
| − | |||
<source lang="php"> | <source lang="php"> | ||
| − | public static | + | public static function radiolist ( |
| + | $data | ||
| + | $name | ||
| + | $attribs=null | ||
| + | $optKey= 'value' | ||
| + | $optText= 'text' | ||
| + | $selected=null | ||
| + | $idtag=false | ||
| + | $translate=false | ||
| + | ) | ||
</source> | </source> | ||
{| class="wikitable" | {| class="wikitable" | ||
| Line 47: | Line 55: | ||
|string | |string | ||
|null | |null | ||
| − | |The name of the object variable for the option text | + | |The name of the object variable for the option text |
|- | |- | ||
|$idtag | |$idtag | ||
| Line 60: | Line 68: | ||
|- | |- | ||
|} | |} | ||
| − | + | * '''Returns''' string HTML for the select list | |
| − | string HTML for the select list | + | * '''Defined''' on line 648 of libraries/joomla/html/html/select.php |
| − | + | ||
| − | libraries/joomla/html/html/select.php | + | |
| − | + | ||
| − | + | ||
===See also=== | ===See also=== | ||
| + | * {{JVer|11.1}} '''JHtmlSelect::radiolist source code''' on [[jplatform:html/html/select.php#cl-640|BitBucket]] | ||
| + | * {{JVer|11.1}} Class [[JHtmlSelect/11.1|JHtmlSelect]] | ||
| + | * {{JVer|11.1}} Subpackage [[Subpackage_Html/11.1|Html]] | ||
| + | * [[JHtmlSelect::radiolist|Other versions of JHtmlSelect::radiolist]] | ||
| + | {{SeeAlso:JHtmlSelect::radiolist}} | ||
<span class="editsection" style="font-size:76%;"> | <span class="editsection" style="font-size:76%;"> | ||
<nowiki>[</nowiki>[[SeeAlso:JHtmlSelect::radiolist|Edit See Also]]<nowiki>]</nowiki> | <nowiki>[</nowiki>[[SeeAlso:JHtmlSelect::radiolist|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::radiolist]]</noinclude> | <noinclude>[[Category:JHtmlSelect]][[Category:JHtmlSelect::radiolist]]</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::radiolist
Description
Generates an HTML radio list.
Description:JHtmlSelect::radiolist [Edit Descripton]
public static function radiolist ( $data $name $attribs=null $optKey= 'value' $optText= 'text' $selected=null $idtag=false $translate=false )
| Parameter | Type | Default | Description |
|---|---|---|---|
| $data | array | An array of objects | |
| $name | string | The value of the HTML name attribute | |
| $attribs | string | null | Additional HTML attributes for the <select> tag |
| $optKey | mixed | 'value' | The key that is selected |
| $optText | string | 'text' | The name of the object variable for the option value |
| $selected | string | null | The name of the object variable for the option text |
| $idtag | false | ||
| $translate | false |
- Returns string HTML for the select list
- Defined on line 648 of libraries/joomla/html/html/select.php
See also
-
JHtmlSelect::radiolist source code on BitBucket
-
Class JHtmlSelect
-
Subpackage Html
- Other versions of JHtmlSelect::radiolist
SeeAlso:JHtmlSelect::radiolist [Edit See Also]
User contributed notes
<CodeExamplesForm />
