Example #1
0
 /**
  * @return string
  */
 public function __toString()
 {
     $append = '<input type="hidden" name="_form" value="' . $this->name . '" />';
     if ($this->bare) {
         return $append;
     }
     if (!in_array($this->attributes['method'], ['GET', 'POST'])) {
         $append .= '<input type="hidden" name="_method" value="' . $this->attributes['method'] . '" />';
         $this->attributes['method'] = 'POST';
     }
     return $this->presenter->renderOpeningTag($this) . $append;
 }