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