class BaseValidatorExtension extends AbstractTypeExtension
Encapsulates common logic of {@link FormTypeValidatorExtension} and {@link SubmitTypeValidatorExtension}.
Methods
buildForm(FormBuilderInterface $builder, array $options) Builds the form. | from AbstractTypeExtension | |
buildView(FormView $view, FormInterface $form, array $options) Builds the view. | from AbstractTypeExtension | |
finishView(FormView $view, FormInterface $form, array $options) Finishes the view. | from AbstractTypeExtension | |
setDefaultOptions(OptionsResolverInterface $resolver) Overrides the default options from the extended type. | from AbstractTypeExtension | |
configureOptions(OptionsResolver $resolver) Configures the options for this type. |
Details
buildForm(FormBuilderInterface $builder, array $options)
Builds the form.
This method is called after the extended type has built the form to further modify it.
buildView(FormView $view, FormInterface $form, array $options)
Builds the view.
This method is called after the extended type has built the view to further modify it.
finishView(FormView $view, FormInterface $form, array $options)
Finishes the view.
This method is called after the extended type has finished the view to further modify it.
setDefaultOptions(OptionsResolverInterface $resolver)
Overrides the default options from the extended type.
configureOptions(OptionsResolver $resolver)
Configures the options for this type.
Please login to continue.