function views_handler::is_a_group
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 723
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;
}