Created
April 29, 2011 16:03
-
-
Save avalanche123/948529 to your computer and use it in GitHub Desktop.
self-referencing function for printing errors from the form
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
$errors = function($field) use (&$errors) { | |
$result = array( | |
'errors' => $field->getErrors(), | |
'children' => array() | |
); | |
foreach ($field as $name => $child) { | |
$result['children'][$name] = $errors($child); | |
} | |
return $result; | |
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
var_dump(array($form->getName() => $errors($form))); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment