You are here

public function ArgumentPluginBase::isException in Drupal 8

Same name and namespace in other branches
  1. 9 core/modules/views/src/Plugin/views/argument/ArgumentPluginBase.php \Drupal\views\Plugin\views\argument\ArgumentPluginBase::isException()
1 call to ArgumentPluginBase::isException()
ArgumentPluginBase::validateArgument in core/modules/views/src/Plugin/views/argument/ArgumentPluginBase.php
Validate that this argument works. By default, all arguments are valid.

File

core/modules/views/src/Plugin/views/argument/ArgumentPluginBase.php, line 90

Class

ArgumentPluginBase
Base class for argument (contextual filter) handler plugins.

Namespace

Drupal\views\Plugin\views\argument

Code

public function isException($arg = NULL) {
  if (!isset($arg)) {
    $arg = isset($this->argument) ? $this->argument : NULL;
  }
  return !empty($this->options['exception']['value']) && $this->options['exception']['value'] === $arg;
}