You are here

protected function NullArgument::defineOptions in Drupal 10

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

File

core/modules/views/src/Plugin/views/argument/NullArgument.php, line 16

Class

NullArgument
Argument handler that ignores the argument.

Namespace

Drupal\views\Plugin\views\argument

Code

protected function defineOptions() {
  $options = parent::defineOptions();
  $options['must_not_be'] = [
    'default' => FALSE,
  ];
  return $options;
}