protected function NullArgument::defaultActions in Zircon Profile 8
Same name and namespace in other branches
- 8.0 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 48 - Contains \Drupal\views\Plugin\views\argument\NullArgument.
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, array(
'ignore',
'not found',
'empty',
'default',
))) {
return parent::defaultActions($which);
}
return;
}
$actions = parent::defaultActions();
unset($actions['summary asc']);
unset($actions['summary desc']);
return $actions;
}