You are here

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

Returns TRUE if the exposed filter works like a grouped filter.

1 method overrides views_handler::is_a_group()
views_handler_filter::is_a_group in handlers/views_handler_filter.inc
Returns TRUE if the exposed filter works like a grouped filter.

File

includes/handlers.inc, line 718
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 is_a_group() {
  return FALSE;
}