function IndexTidDepth::query

Same name and namespace in other branches
  1. 8.9.x core/modules/taxonomy/src/Plugin/views/argument/IndexTidDepth.php \Drupal\taxonomy\Plugin\views\argument\IndexTidDepth::query()
  2. 10 core/modules/taxonomy/src/Plugin/views/argument/IndexTidDepth.php \Drupal\taxonomy\Plugin\views\argument\IndexTidDepth::query()
  3. 11.x core/modules/taxonomy/src/Plugin/views/argument/IndexTidDepth.php \Drupal\taxonomy\Plugin\views\argument\IndexTidDepth::query()

Overrides ArgumentPluginBase::query

File

core/modules/taxonomy/src/Plugin/views/argument/IndexTidDepth.php, line 97

Class

IndexTidDepth
Argument handler for taxonomy terms with depth.

Namespace

Drupal\taxonomy\Plugin\views\argument

Code

public function query($group_by = FALSE) {
    $this->ensureMyTable();
    if (!empty($this->options['break_phrase'])) {
        $break = static::breakString($this->argument);
        if ($break->value === [
            -1,
        ]) {
            return FALSE;
        }
        $tids = $break->value;
    }
    else {
        $tids = $this->argument;
    }
    $this->addSubQueryJoin($tids);
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.