You are here

public function HandlerBase::usesGroupBy 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::usesGroupBy()

Provides the handler some groupby.

13 methods override HandlerBase::usesGroupBy()
AreaPluginBase::usesGroupBy in core/modules/views/src/Plugin/views/area/AreaPluginBase.php
Provides the handler some groupby.
ContextualLinks::usesGroupBy in core/modules/contextual/src/Plugin/views/field/ContextualLinks.php
Provides the handler some groupby.
Counter::usesGroupBy in core/modules/views/src/Plugin/views/field/Counter.php
Provides the handler some groupby.
Custom::usesGroupBy in core/modules/views/src/Plugin/views/field/Custom.php
Provides the handler some groupby.
EntityOperations::usesGroupBy in core/modules/views/src/Plugin/views/field/EntityOperations.php
Provides the handler some groupby.

... See full list

File

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

Class

HandlerBase
Base class for Views handler plugins.

Namespace

Drupal\views\Plugin\views

Code

public function usesGroupBy() {
  return TRUE;
}