function NullArgument::defaultActions

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

Override defaultActions() to remove actions that don't make sense for a null argument.

Overrides ArgumentPluginBase::defaultActions

File

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

Class

NullArgument
Argument handler that ignores the argument.

Namespace

Drupal\views\Plugin\views\argument

Code

protected function defaultActions($which = NULL) {
    if ($which) {
        if (in_array($which, [
            'ignore',
            'not found',
            'empty',
            'default',
        ])) {
            return parent::defaultActions($which);
        }
        return;
    }
    $actions = parent::defaultActions();
    unset($actions['summary asc']);
    unset($actions['summary desc']);
    return $actions;
}

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