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