1 views_handler_filter.inc | views_handler_filter::can_group() |
Can this filter be used in OR groups?
Some filters have complicated where clauses that cannot be 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:
File
- core/
modules/ views/ handlers/ views_handler_filter.inc, line 1399 - @todo.
Class
- views_handler_filter
- Base class for filters.
Code
function can_group() {
return TRUE;
}