public function TaxonomyDisplayHandlerForm::formSubmit in Taxonomy display 7
Perform any processing desired and return the result to be stored.
Parameters
array $form: A fieldset containing the sub-form rendered to the user.
array $values: The values from the sub-form taken from $form_state, note any alterations will affect the values in $form_state.
Return value
mixed Any single variable or no variable can be returned. Whatever is returned will be stored on behalf of the plugin for later use.
See also
TaxonomyDisplayHandlerForm::formFieldset()
7 methods override TaxonomyDisplayHandlerForm::formSubmit()
- TaxonomyDisplayAssociatedDisplayHandlerCore::formSubmit in handlers/
associated/ core.inc - We store values to access later for rendering and editing.
- TaxonomyDisplayAssociatedDisplayHandlerHidden::formSubmit in handlers/
associated/ hidden.inc - Do not want anything stored, return void.
- TaxonomyDisplayAssociatedDisplayHandlerViews::formSubmit in handlers/
associated/ views.inc - We store values to access later for rendering and editing.
- TaxonomyDisplayBreadcrumbDisplayHandlerCore::formSubmit in handlers/
breadcrumb/ core.inc - Do not want anything stored, return void.
- TaxonomyDisplayBreadcrumbDisplayHandlerHidden::formSubmit in handlers/
breadcrumb/ hidden.inc - Do not want anything stored, return void.
File
- classes/
handler_form.inc, line 44
Class
- TaxonomyDisplayHandlerForm
- Abstract class to act as the taxonomy display plugins form handing.
Code
public function formSubmit($form, &$values) {
// Override formSubmit in your implementing handler if any data is to be
// stored on behalf of your handler on submit.
return;
}