public function SearchApiAlterCallbackInterface::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 SearchApiAlterCallbackInterface::configurationFormSubmit()
File
- includes/
callback.inc, line 80 - Contains base definitions for data alterations.
Class
- SearchApiAlterCallbackInterface
- Interface representing a Search API data-alter callback.
Code
public function configurationFormSubmit(array $form, array &$values, array &$form_state);