You are here

public function DomainAccessCurrentAllFilter::init in Domain Access 8

Overrides \Drupal\views\Plugin\views\HandlerBase::init().

Provide some extra help to get the operator/value easier to use.

This likely has to be overridden by filters which are more complex than simple operator/value.

Overrides BooleanOperator::init

File

domain_access/src/Plugin/views/filter/DomainAccessCurrentAllFilter.php, line 21

Class

DomainAccessCurrentAllFilter
Handles matching of current domain.

Namespace

Drupal\domain_access\Plugin\views\filter

Code

public function init(ViewExecutable $view, DisplayPluginBase $display, array &$options = NULL) {
  parent::init($view, $display, $options);
  $this->value_value = t('Available on current domain');
}