phpMv
-UI toolkit 2.4.12
jQuery, jQuery UI, Twitter Bootstrap and Semantic-UI library for php & php MVC Frameworks
HtmlInputRadio.php
Go to the documentation of this file.
1
<?php
2
3
namespace
Ajax\bootstrap\html
;
4
10
class
HtmlInputRadio
extends
HtmlInput
{
11
12
public
function
__construct
(
$identifier
, $label=NULL) {
13
parent::__construct(
$identifier
);
14
$this->
setProperty
(
"type"
,
"radio"
);
15
$this->
setProperty
(
"class"
,
""
);
16
if
(isset($label)) {
17
$this->
setLabel
($label,
false
);
18
}
19
}
20
}
Ajax\bootstrap\html
Ajax\bootstrap\html\HtmlInput
Twitter Bootstrap simple Input component.
Definition:
HtmlInput.php:13
Ajax\bootstrap\html\HtmlInput\setLabel
setLabel($label, $before=true)
Definition:
HtmlInput.php:32
Ajax\common\html\traits\setProperty
setProperty($name, $value)
Definition:
BaseHtmlPropertiesTrait.php:30
Ajax\common\html\BaseWidget\$identifier
$identifier
Definition:
BaseWidget.php:14
Ajax\bootstrap\html\HtmlInputRadio\__construct
__construct($identifier, $label=NULL)
Definition:
HtmlInputRadio.php:12
Ajax\bootstrap\html\HtmlInputRadio
Twitter Bootstrap HTML Input radio component.
Definition:
HtmlInputRadio.php:10
Ajax
bootstrap
html
HtmlInputRadio.php
Generated on Thu Sep 19 2024 23:26:03 for
phpMv-UI
by
doxygen
1.8.13