You are here

function hook_views_form_validate in Views (for Drupal 7) 6.3

Views form (View with form elements) validate handler. Called for all steps ($form_state['storage']['step']) of the multistep form.

Related topics

1 function implements hook_views_form_validate()

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_validate in ./views.module
Validate handler for the first step of the views form. Calls any existing views_form_validate functions located on the views fields.
1 invocation of hook_views_form_validate()
views_form_validate in ./views.module
The basic form validate handler. Fires the hook_views_form_validate() function.

File

docs/docs.php, line 608
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_validate($form, &$form_state) {

  // example code here
}