phpMv -UI toolkit 2.4.12
jQuery, jQuery UI, Twitter Bootstrap and Semantic-UI library for php & php MVC Frameworks
Loading...
Searching...
No Matches
HtmlFormCheckbox.php
Go to the documentation of this file.
1<?php
2
4
8
16 public function __construct($identifier, $label=NULL, $value=NULL, $type=NULL) {
17 parent::__construct("field-".$identifier, new HtmlCheckbox($identifier,$label,$value,$type));
18 $this->_identifier=$identifier;
19 }
20
21 public static function slider($identifier, $label="", $value=NULL) {
22 return new HtmlFormCheckbox($identifier, $label, $value, CheckboxType::SLIDER);
23 }
24
25 public static function toggle($identifier, $label="", $value=NULL) {
26 return new HtmlFormCheckbox($identifier, $label, $value, CheckboxType::TOGGLE);
27 }
28}
static toggle($identifier, $label="", $value=NULL)
static slider($identifier, $label="", $value=NULL)
__construct($identifier, $label=NULL, $value=NULL, $type=NULL)