function NullArgument::defaultActions
Same name in other branches
- 9 core/modules/views/src/Plugin/views/argument/NullArgument.php \Drupal\views\Plugin\views\argument\NullArgument::defaultActions()
- 8.9.x core/modules/views/src/Plugin/views/argument/NullArgument.php \Drupal\views\Plugin\views\argument\NullArgument::defaultActions()
- 11.x core/modules/views/src/Plugin/views/argument/NullArgument.php \Drupal\views\Plugin\views\argument\NullArgument::defaultActions()
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\argumentCode
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.