Beispiel #1
0
 /**
  * Returns all the values of the form fields
  * 
  * @return array
  */
 public function getFormValues()
 {
     $this->verifyLayout();
     $values = array();
     foreach ($this->layout->getChildrenByType('\\Zepi\\Web\\UserInterface\\Form\\Form', true) as $form) {
         $values = $this->extractFormValues($form);
     }
     return $values;
 }