API17:JHtmlSelect::integerlist
From Joomla! Documentation
(Difference between revisions)
(Bulk upload by Doxiki2) |
(Updated to r1448:247ba8d88526) |
||
| (One intermediate revision by one user not shown) | |||
| Line 8: | Line 8: | ||
<nowiki>[</nowiki>[[Description:JHtmlSelect::integerlist|Edit Descripton]]<nowiki>]</nowiki> | <nowiki>[</nowiki>[[Description:JHtmlSelect::integerlist|Edit Descripton]]<nowiki>]</nowiki> | ||
</span> | </span> | ||
| − | |||
<source lang="php"> | <source lang="php"> | ||
| − | public static | + | public static function integerlist ( |
| + | $start | ||
| + | $end | ||
| + | $inc | ||
| + | $name | ||
| + | $attribs=null | ||
| + | $selected=null | ||
| + | $format= '' | ||
| + | ) | ||
</source> | </source> | ||
{| class="wikitable" | {| class="wikitable" | ||
| Line 52: | Line 59: | ||
|string | |string | ||
|'' | |'' | ||
| − | |The printf format to be applied to the number | + | |The printf format to be applied to the number |
|- | |- | ||
|} | |} | ||
| − | + | * '''Returns''' string HTML for the select list | |
| − | string HTML for the select list | + | * '''Defined''' on line 298 of libraries/joomla/html/html/select.php |
| − | + | ||
| − | libraries/joomla/html/html/select.php | + | |
| − | + | ||
===See also=== | ===See also=== | ||
| + | * {{JVer|11.1}} '''JHtmlSelect::integerlist source code''' on [[jplatform:html/html/select.php#cl-290|BitBucket]] | ||
| + | * {{JVer|11.1}} Class [[JHtmlSelect/11.1|JHtmlSelect]] | ||
| + | * {{JVer|11.1}} Subpackage [[Subpackage_Html/11.1|Html]] | ||
| + | * [[JHtmlSelect::integerlist|Other versions of JHtmlSelect::integerlist]] | ||
| + | {{SeeAlso:JHtmlSelect::integerlist}} | ||
<span class="editsection" style="font-size:76%;"> | <span class="editsection" style="font-size:76%;"> | ||
<nowiki>[</nowiki>[[SeeAlso:JHtmlSelect::integerlist|Edit See Also]]<nowiki>]</nowiki> | <nowiki>[</nowiki>[[SeeAlso:JHtmlSelect::integerlist|Edit See Also]]<nowiki>]</nowiki> | ||
</span> | </span> | ||
| − | + | ===User contributed notes=== | |
| − | + | ||
| − | + | ||
| − | === | + | |
<CodeExamplesForm /> | <CodeExamplesForm /> | ||
<dpl> | <dpl> | ||
| Line 75: | Line 81: | ||
category=MethodExample | category=MethodExample | ||
include=* | include=* | ||
| + | namespace=CodeExample | ||
format= ,,, | format= ,,, | ||
</dpl> | </dpl> | ||
<noinclude>[[Category:JHtmlSelect]][[Category:JHtmlSelect::integerlist]]</noinclude> | <noinclude>[[Category:JHtmlSelect]][[Category:JHtmlSelect::integerlist]]</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::integerlist
Description
Generates a selection list of integers.
Description:JHtmlSelect::integerlist [Edit Descripton]
public static function integerlist ( $start $end $inc $name $attribs=null $selected=null $format= '' )
| Parameter | Type | Default | Description |
|---|---|---|---|
| $start | int | The start integer | |
| $end | int | The end integer | |
| $inc | int | The increment | |
| $name | string | The value of the HTML name attribute | |
| $attribs | mixed | null | Additional HTML attributes for the <select> tag, an array of attributes, or an array of options. Treated as options if it is the last argument passed. |
| $selected | mixed | null | The key that is selected |
| $format | string | The printf format to be applied to the number |
- Returns string HTML for the select list
- Defined on line 298 of libraries/joomla/html/html/select.php
See also
-
JHtmlSelect::integerlist source code on BitBucket
-
Class JHtmlSelect
-
Subpackage Html
- Other versions of JHtmlSelect::integerlist
SeeAlso:JHtmlSelect::integerlist [Edit See Also]
User contributed notes
<CodeExamplesForm />
