public function SearchApiProcessorInterface::configurationFormSubmit in Search API 7
Submit callback for the form returned by configurationForm().
This method should both return the new options and set them internally.
Parameters
array $form: The form returned by configurationForm().
array $values: The part of the $form_state['values'] array corresponding to this form.
array $form_state: The complete form state.
Return value
array The new options array for this callback.
1 method overrides SearchApiProcessorInterface::configurationFormSubmit()
- SearchApiAbstractProcessor::configurationFormSubmit in includes/
processor.inc - Submit callback for the form returned by configurationForm().
File
- includes/
processor.inc, line 88 - Contains SearchApiProcessorInterface and SearchApiAbstractProcessor.
Class
- SearchApiProcessorInterface
- Interface representing a Search API pre- and/or post-processor.
Code
public function configurationFormSubmit(array $form, array &$values, array &$form_state);