View source
<?php
namespace Drupal\shs_chosen\Plugin\views\filter;
use Drupal\Core\Form\FormStateInterface;
use Drupal\Core\Database\Connection;
use Drupal\Core\Database\Query\Condition;
use Drupal\taxonomy\TermStorageInterface;
use Drupal\taxonomy\VocabularyStorageInterface;
use Symfony\Component\DependencyInjection\ContainerInterface;
class ShsChosenTaxonomyIndexTidDepth extends ShsChosenTaxonomyIndexTid {
protected $database;
public function __construct(array $configuration, $plugin_id, $plugin_definition, VocabularyStorageInterface $vocabulary_storage, TermStorageInterface $term_storage, AccountInterface $current_user, Connection $database) {
parent::__construct($configuration, $plugin_id, $plugin_definition, $vocabulary_storage, $term_storage, $current_user);
$this->database = $database;
$this->translationContext = 'shs_chosen:taxonomy_index_tid_depth';
}
public static function create(ContainerInterface $container, array $configuration, $plugin_id, $plugin_definition) {
return new static($configuration, $plugin_id, $plugin_definition, $container
->get('entity_type.manager')
->getStorage('taxonomy_vocabulary'), $container
->get('entity_type.manager')
->getStorage('taxonomy_term'), $container
->get('current_user'), $container
->get('database'));
}
public function operatorOptions($which = 'title') {
return [
'or' => $this
->t('Is one of'),
];
}
protected function defineOptions() {
$options = parent::defineOptions();
$options['depth'] = [
'default' => 0,
];
return $options;
}
public function buildExtraOptionsForm(&$form, FormStateInterface $form_state) {
parent::buildExtraOptionsForm($form, $form_state);
$form['depth'] = [
'#type' => 'weight',
'#title' => $this
->t('Depth'),
'#default_value' => $this->options['depth'],
'#description' => $this
->t('The depth will match nodes tagged with terms in the hierarchy. For example, if you have the term "fruit" and a child term "apple", with a depth of 1 (or higher) then filtering for the term "fruit" will get nodes that are tagged with "apple" as well as "fruit". If negative, the reverse is true; searching for "apple" will also pick up nodes tagged with "fruit" if depth is -1 (or lower).'),
];
}
public function query() {
if (count($this->value) == 0) {
return;
}
elseif (count($this->value) == 1) {
if (is_array($this->value)) {
$this->value = current($this->value);
}
$operator = '=';
}
else {
$operator = 'IN';
}
if (!empty($this->relationship)) {
$this->tableAlias = $this->relationship;
}
else {
$this->tableAlias = $this->query
->ensureTable($this->view->storage
->get('base_table'));
}
$subquery = $this->database
->select('taxonomy_index', 'tn');
$subquery
->addField('tn', 'nid');
$or_condition = new Condition('OR');
$where = $or_condition
->condition('tn.tid', $this->value, $operator);
$last = "tn";
if ($this->options['depth'] > 0) {
$subquery
->leftJoin('taxonomy_term__parent', 'tp', "tp.entity_id = tn.tid");
$last = "tp";
foreach (range(1, abs($this->options['depth'])) as $count) {
$subquery
->leftJoin('taxonomy_term__parent', "tp{$count}", "{$last}.parent_target_id = tp{$count}.entity_id");
$where
->condition("tp{$count}.entity_id", $this->value, $operator);
$last = "tp{$count}";
}
}
elseif ($this->options['depth'] < 0) {
foreach (range(1, abs($this->options['depth'])) as $count) {
$subquery
->leftJoin('taxonomy_term__parent', "tp{$count}", "{$last}.entity_id = tp{$count}.parent_target_id");
$where
->condition("tp{$count}.entity_id", $this->value, $operator);
$last = "tp{$count}";
}
}
$subquery
->condition($where);
$this->query
->addWhere($this->options['group'], "{$this->tableAlias}.{$this->realField}", $subquery, 'IN');
}
}