for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Ajax\semantic\html\modules\checkbox;
use Ajax\semantic\html\modules\checkbox\AbstractCheckbox;
use Ajax\semantic\html\base\constants\CheckboxType;
class HtmlRadio extends AbstractCheckbox {
public function __construct($identifier, $name=NULL, $label=NULL, $value=NULL, $checkboxType=NULL) {
parent::__construct($identifier, $name, $label, $value, "radio", "radio checkbox");
if (isset($checkboxType)===true) {
$this->setType($checkboxType);
}