You are here

public function NumericArgument::getContextDefinition in Drupal 10

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

File

core/modules/views/src/Plugin/views/argument/NumericArgument.php, line 125

Class

NumericArgument
Basic argument handler for arguments that are numeric. Incorporates break_phrase.

Namespace

Drupal\views\Plugin\views\argument

Code

public function getContextDefinition() {
  if ($context_definition = parent::getContextDefinition()) {
    return $context_definition;
  }

  // If the parent does not provide a context definition through the
  // validation plugin, fall back to the integer type.
  return new ContextDefinition('integer', $this
    ->adminLabel(), FALSE);
}