phpMv  -UI toolkit 2.4.12
jQuery, jQuery UI, Twitter Bootstrap and Semantic-UI library for php & php MVC Frameworks
HtmlRadio.php
Go to the documentation of this file.
1 <?php
2 
4 
6 
7 class HtmlRadio extends AbstractCheckbox {
8 
9  public function __construct($identifier, $name=NULL, $label=NULL, $value=NULL, $checkboxType=NULL) {
10  parent::__construct($identifier, $name, $label, $value, "radio", "radio checkbox");
11  if (isset($checkboxType)) {
12  $this->setType($checkboxType);
13  }
14  }
15 }
__construct($identifier, $name=NULL, $label=NULL, $value=NULL, $checkboxType=NULL)
Definition: HtmlRadio.php:9