You are here

public function QueryPluginBase::setGroupOperator in Drupal 9

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

Control how all WHERE and HAVING groups are put together.

Parameters

$type: Either 'AND' or 'OR'

File

core/modules/views/src/Plugin/views/query/QueryPluginBase.php, line 189

Class

QueryPluginBase
Base plugin class for Views queries.

Namespace

Drupal\views\Plugin\views\query

Code

public function setGroupOperator($type = 'AND') {
  $this->groupOperator = strtoupper($type);
}