wayfinding-2.1.x-dev/src/Plugin/views/filter/Sources.php
src/Plugin/views/filter/Sources.php
<?php
namespace Drupal\wayfinding\Plugin\views\filter;
use Drupal\views\Plugin\views\query\Sql;
/**
* Filter handler for wayfinding sources.
*
* @ingroup views_filter_handlers
*
* @ViewsFilter("wayfinding_sources")
*/
class Sources extends Destinations {
/**
* {@inheritdoc}
*/
public function query(): void {
if (!($this->query instanceof Sql)) {
return;
}
$table = $this->ensureMyTable();
$types = [];
foreach ($this->config->get('types')['sources'] as $key => $value) {
if (!empty($value)) {
$types[] = $key;
}
}
$types = implode("','", $types);
$snippet = "$table.parent_entity__target_type IN ('$types')";
$this->query->addWhereExpression($this->options['group'], $snippet);
}
}
