function NullArgument::defineOptions

Same name and namespace in other branches
  1. 8.9.x core/modules/views/src/Plugin/views/argument/NullArgument.php \Drupal\views\Plugin\views\argument\NullArgument::defineOptions()
  2. 10 core/modules/views/src/Plugin/views/argument/NullArgument.php \Drupal\views\Plugin\views\argument\NullArgument::defineOptions()
  3. 11.x core/modules/views/src/Plugin/views/argument/NullArgument.php \Drupal\views\Plugin\views\argument\NullArgument::defineOptions()

Overrides ArgumentPluginBase::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;
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.