You are here

function views_composite_exposed_form_plugin::exposed_form_submit in Views Hacks 6

Same name and namespace in other branches
  1. 7 views_composite_exposed_form/views_composite_exposed_form_plugin.inc \views_composite_exposed_form_plugin::exposed_form_submit()

This function is executed when exposed form is submited.

Parameters

$form: Nested array of form elements that comprise the form.

$form_state: A keyed array containing the current state of the form.

$exclude: Nested array of keys to exclude of insert into $view->exposed_raw_input

Overrides views_plugin_exposed_form::exposed_form_submit

File

views_composite_exposed_form/views_composite_exposed_form_plugin.inc, line 90

Class

views_composite_exposed_form_plugin

Code

function exposed_form_submit(&$form, &$form_state, &$exclude) {
  foreach ($this->plugins as $name => $plugin) {
    $plugin
      ->exposed_form_submit($form, $form_state, $exclude);
  }
}