You are here

public function views_handler::multiple_exposed_input in Views (for Drupal 7) 7.3

Define if the exposed input has to be submitted multiple times. This is TRUE when exposed filters grouped are using checkboxes as widgets.

1 method overrides views_handler::multiple_exposed_input()
views_handler_filter::multiple_exposed_input in handlers/views_handler_filter.inc
Indicate whether users can select multiple group items.

File

includes/handlers.inc, line 727
Defines the various handler objects to help build and display views.

Class

views_handler
Base handler, from which all the other handlers are derived. It creates a common interface to create consistency amongst handlers and data.

Code

public function multiple_exposed_input() {
  return FALSE;
}