Ejemplo n.º 1
0
 /**
  * Configures a form view for the type hierarchy.
  *
  * This method is called before the children of the view are built.
  *
  * @param FormView      $view    The form view to configure.
  * @param FormInterface $form    The form corresponding to the view.
  * @param array         $options The options used for the configuration.
  */
 public function buildView(FormView $view, FormInterface $form, array $options)
 {
     if (null !== $this->parent) {
         $this->parent->buildView($view, $form, $options);
     }
     $this->innerType->buildView($view, $form, $options);
     foreach ($this->typeExtensions as $extension) {
         $extension->buildView($view, $form, $options);
     }
 }