Example #1
0
 /**
  * Adds the given Field to the form.
  *
  * @param Field $field
  */
 public function addField(Field $field)
 {
     if ($field->getIsHidden()) {
         $this->hiddenFields[] = $field;
     } else {
         $this->publicFields[] = $field;
     }
 }