You are here

public function HandlerBase::isAGroup in Drupal 9

Same name and namespace in other branches
  1. 8 core/modules/views/src/Plugin/views/HandlerBase.php \Drupal\views\Plugin\views\HandlerBase::isAGroup()

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

1 method overrides HandlerBase::isAGroup()
FilterPluginBase::isAGroup in core/modules/views/src/Plugin/views/filter/FilterPluginBase.php
Returns TRUE if the exposed filter works like a grouped filter.

File

core/modules/views/src/Plugin/views/HandlerBase.php, line 560

Class

HandlerBase
Base class for Views handler plugins.

Namespace

Drupal\views\Plugin\views

Code

public function isAGroup() {
  return FALSE;
}