Beispiel #1
0
 public function render()
 {
     if ($this->checked == 'checked') {
         $additional = 'checked="' . $this->checked . '" ';
     } else {
         $additional = '';
     }
     $html = parent::render($additional);
     return $html;
 }
Beispiel #2
0
 public function render()
 {
     $additional = 'value="' . $this->value . '" ';
     return parent::render($additional);
 }
Beispiel #3
0
 public function render()
 {
     $html = parent::render($additional);
     return $html;
 }