function IndexTidDepth::query
Same name in other branches
- 9 core/modules/taxonomy/src/Plugin/views/argument/IndexTidDepth.php \Drupal\taxonomy\Plugin\views\argument\IndexTidDepth::query()
- 8.9.x core/modules/taxonomy/src/Plugin/views/argument/IndexTidDepth.php \Drupal\taxonomy\Plugin\views\argument\IndexTidDepth::query()
- 10 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 92
Class
- IndexTidDepth
- Argument handler for taxonomy terms with depth.
Namespace
Drupal\taxonomy\Plugin\views\argumentCode
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.