/** * Durchsucht das Formular nach einem Feld * @param string Name des Feldes, wonach gesucht werden soll * @return object|null Bei erfolgreicher Suche wird ein rexFormField-Objekt zurückgegeben, sonst null * @access public */ function searchField($name) { $result = parent::searchField($name); if ($result !== null) { return $result; } $sections =& $this->getSections(); for ($i = 0; $this->numSections(); $i++) { $section =& $sections[$i]; $result = $section->searchField($name); if ($result !== null) { return $result; } } return null; }
function addField(&$field) { parent::addField($field, $this); }