示例#1
0
 public function render()
 {
     $value = $this->getValueFromForm();
     if (!empty($value)) {
         $this->attributes['checked'] = 'checked';
     } else {
         $value = 1;
     }
     return $this->addon ? HtmlBuilder::checkboxAddon($this->name, $this->label, $value, $this->attributes, $this->addonValue) : HtmlBuilder::checkbox($this->name, $this->label, $value, $this->getOptions($this->attributes));
 }