You are here

function views_handler_filter_term_node_tid::can_group in Views (for Drupal 7) 6.3

Can this filter be used in OR groups?

Some filters have complicated where clauses that cannot be easily used with OR groups. Some filters must also use HAVING which also makes them not groupable. These filters will end up in a special group if OR grouping is in use.

Return value

bool

Overrides views_handler_filter::can_group

File

modules/taxonomy/views_handler_filter_term_node_tid.inc, line 9

Class

views_handler_filter_term_node_tid
Filter by term id.

Code

function can_group() {
  return FALSE;
}