You are here

public function None::validateArgument in Drupal 8

Same name and namespace in other branches
  1. 9 core/modules/views/src/Plugin/views/argument_validator/None.php \Drupal\views\Plugin\views\argument_validator\None::validateArgument()
  2. 10 core/modules/views/src/Plugin/views/argument_validator/None.php \Drupal\views\Plugin\views\argument_validator\None::validateArgument()

Performs validation for a given argument.

Overrides ArgumentValidatorPluginBase::validateArgument

File

core/modules/views/src/Plugin/views/argument_validator/None.php, line 17

Class

None
Do not validate the argument.

Namespace

Drupal\views\Plugin\views\argument_validator

Code

public function validateArgument($argument) {
  if (!empty($this->argument->options['must_not_be'])) {
    return !isset($argument);
  }
  if (!isset($argument) || $argument === '') {
    return FALSE;
  }
  if (!empty($this->argument->definition['numeric']) && !isset($this->argument->options['break_phrase']) && !is_numeric($arg)) {
    return FALSE;
  }
  return TRUE;
}