'checkbox' ); protected $label; public function __construct($key, $title, array $attr = array(), $label = null) { parent::__construct($key, $title, $attr); $this->label = $label; } public function render() { if ($this->value) { $this->attr['checked'] = 'checked'; } $html = "'; $html .= "
{$this->description}
"; } else { $html .= $this->description; $html .= ''; } return $html; } }