function hook_views_form_submit in Views (for Drupal 7) 6.3
Views form (View with form elements) submit handler. Called for all steps ($form_state['storage']['step']) of the multistep form.
Related topics
1 function implements hook_views_form_submit()
Note: this list is generated by pattern matching, so it may include some functions that are not actually implementations of this hook.
- views_form_views_form_submit in ./
views.module - Submit handler for the first step of the views form. Calls any existing views_form_submit functions located on the views fields.
1 invocation of hook_views_form_submit()
- views_form_submit in ./
views.module - The basic form submit handler. Fires the hook_views_form_submit() function.
File
- docs/
docs.php, line 616 - This file contains no working PHP code; it exists to provide additional documentation for doxygen as well as to document hooks in the standard Drupal manner.
Code
function hook_views_form_submit($form, &$form_state) {
// example code here
}