示例#1
0
 /**
  * @param Element $element
  * @return Form
  */
 public function add(Element $element)
 {
     if ($element instanceof File) {
         $this->enableFileUploads();
     }
     $this->elements[$element->name()] = $element;
     return $this;
 }