function GroupByNumeric::canGroup
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 TRUE if the filter can be used in OR groups, FALSE otherwise.
Overrides FilterPluginBase::canGroup
File
-
core/
modules/ views/ src/ Plugin/ views/ filter/ GroupByNumeric.php, line 78
Class
- GroupByNumeric
- Simple filter to handle greater than/less than filters.
Namespace
Drupal\views\Plugin\views\filterCode
public function canGroup() {
return FALSE;
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.