FormDataExtractorInterface
in
Extracts arrays of information out of forms.
Tags
Table of Contents
Methods
- extractConfiguration() : array<string|int, mixed>
- Extracts the configuration data of a form.
- extractDefaultData() : array<string|int, mixed>
- Extracts the default data of a form.
- extractSubmittedData() : array<string|int, mixed>
- Extracts the submitted data of a form.
- extractViewVariables() : array<string|int, mixed>
- Extracts the view variables of a form.
Methods
extractConfiguration()
Extracts the configuration data of a form.
public
extractConfiguration(FormInterface $form) : array<string|int, mixed>
Parameters
- $form : FormInterface
Return values
array<string|int, mixed>extractDefaultData()
Extracts the default data of a form.
public
extractDefaultData(FormInterface $form) : array<string|int, mixed>
Parameters
- $form : FormInterface
Return values
array<string|int, mixed>extractSubmittedData()
Extracts the submitted data of a form.
public
extractSubmittedData(FormInterface $form) : array<string|int, mixed>
Parameters
- $form : FormInterface
Return values
array<string|int, mixed>extractViewVariables()
Extracts the view variables of a form.
public
extractViewVariables(FormView $view) : array<string|int, mixed>
Parameters
- $view : FormView