* * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Symfony\Component\Form\Extension\DataCollector; use Symfony\Component\Form\FormInterface; use Symfony\Component\Form\FormView; use Symfony\Component\HttpKernel\DataCollector\DataCollectorInterface; /** * Collects and structures information about forms. * * @author Bernhard Schussek */ interface FormDataCollectorInterface extends DataCollectorInterface { /** * Stores configuration data of the given form and its children. */ public function collectConfiguration(FormInterface $form); /** * Stores the default data of the given form and its children. */ public function collectDefaultData(FormInterface $form); /** * Stores the submitted data of the given form and its children. */ public function collectSubmittedData(FormInterface $form); /** * Stores the view variables of the given form view and its children. */ public function collectViewVariables(FormView $view); /** * Specifies that the given objects represent the same conceptual form. */ public function associateFormWithView(FormInterface $form, FormView $view); /** * Assembles the data collected about the given form and its children as * a tree-like data structure. * * The result can be queried using {@link getData()}. */ public function buildPreliminaryFormTree(FormInterface $form); /** * Assembles the data collected about the given form and its children as * a tree-like data structure. * * The result can be queried using {@link getData()}. * * Contrary to {@link buildPreliminaryFormTree()}, a {@link FormView} * object has to be passed. The tree structure of this view object will be * used for structuring the resulting data. That means, if a child is * present in the view, but not in the form, it will be present in the final * data array anyway. * * When {@link FormView} instances are present in the view tree, for which * no corresponding {@link FormInterface} objects can be found in the form * tree, only the view data will be included in the result. If a * corresponding {@link FormInterface} exists otherwise, call * {@link associateFormWithView()} before calling this method. */ public function buildFinalFormTree(FormInterface $form, FormView $view); /** * Returns all collected data. * * @return array */ public function getData(); } __halt_compiler();----SIGNATURE:----uh8vdS5C4d5+Oqz9PolnArM7FyXouaN/lU80TJEBSolvVk4CWMlzKzYjjlcJLEnYJ91a1+aSmT1bLiwPSEX0A+rt+8+3qLe/adpxbNciVeROhweqZNhiZUI2LxAEDiDFWxVfyVnCV76RH3gmTeFI6VHy67xD/0w+FssbVBFw7cD00i3YDCh9kgJIHMZe9krFTUwEJp1jD9rFUSXLmY1Uw3uK/qiStuIj254B9CbHOTMqh2jgJJxd/V/HizR/t2/V4Y4vkvZ6GBMutCs8lZwhyhQgCFV3kAhC7WK/hUzO4i1aBO6agpa7qI1bgX2fH1lXZFTkP/tu414RxAhJTK7dJ033zLfIPDs6+rmXh6eGB0qQRIZhl6o9pQ3hZvY2hJhbXApokK+MHpK5fram0uEnXJoWkbtChLt6IB81HlrJxTI2TyKFCM7gkmDaFBg5N0VMK/1fyPmVjAztGlD0yewbWVNU2FwZ5nJxX3bnJAMf0jBnsyg/1mHEmGYI7vh7dGMePt8CppJ5KV/UeVyBNazHnuRRI9Hn3SglSZ+msvkJWFGElEtcZydYvoloiVE9sHyTeidPaT8aQBirONwpxnyIpiZ9GA1DhbZQp3DJ3f6q13XnbsfsdwoSG4kWd9gl65ZEec3NfFR4mZiSERF9ErTV1gXwETynqz0q9qMPiAlCdOI=----ATTACHMENT:----Mzk3MDYwNDMzNTEyODE4MiAxNTgwOTU4MjgzMjA0NjM1IDQzODE3ODA1MDgxMzA2NzY=