class FormTypeCsrfExtension extends AbstractTypeExtension
Methods
buildForm(FormBuilderInterface $builder, array $options) Adds a CSRF field to the form when the CSRF protection is enabled. | ||
buildView(FormView $view, FormInterface $form, array $options) Builds the view. | from AbstractTypeExtension | |
finishView(FormView $view, FormInterface $form, array $options) Adds a CSRF field to the root form view. | ||
configureOptions(OptionsResolver $resolver) Configures the options for this type. | ||
__construct(CsrfTokenManagerInterface $defaultTokenManager, $defaultEnabled = true, $defaultFieldName = '_token', TranslatorInterface $translator = null, $translationDomain = null, ServerParams $serverParams = null) | ||
string | getExtendedType() Returns the name of the type being extended. |
Details
buildForm(FormBuilderInterface $builder, array $options)
Adds a CSRF field to the form when the CSRF protection is enabled.
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)
Adds a CSRF field to the root form view.
configureOptions(OptionsResolver $resolver)
Configures the options for this type.
__construct(CsrfTokenManagerInterface $defaultTokenManager, $defaultEnabled = true, $defaultFieldName = '_token', TranslatorInterface $translator = null, $translationDomain = null, ServerParams $serverParams = null)
string getExtendedType()
Returns the name of the type being extended.
Please login to continue.