You are here

public function NumericArgumentValidator::getContextDefinition in Drupal 10

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

File

core/modules/views/src/Plugin/views/argument_validator/NumericArgumentValidator.php, line 26

Class

NumericArgumentValidator
Validate whether an argument is numeric or not.

Namespace

Drupal\views\Plugin\views\argument_validator

Code

public function getContextDefinition() {
  return new ContextDefinition('integer', $this->argument
    ->adminLabel(), FALSE);
}