public function ArgumentPluginBase::summarySort in Zircon Profile 8.0
Same name and namespace in other branches
- 8 core/modules/views/src/Plugin/views/argument/ArgumentPluginBase.php \Drupal\views\Plugin\views\argument\ArgumentPluginBase::summarySort()
Sorts the summary based upon the user's selection. The base variant of this is usually adequate.
Parameters
$order: The order selected in the UI.
1 call to ArgumentPluginBase::summarySort()
- ArgumentPluginBase::defaultSummary in core/
modules/ views/ src/ Plugin/ views/ argument/ ArgumentPluginBase.php - Default action: summary.
File
- core/
modules/ views/ src/ Plugin/ views/ argument/ ArgumentPluginBase.php, line 922 - Contains \Drupal\views\Plugin\views\argument\ArgumentPluginBase.
Class
- ArgumentPluginBase
- Base class for argument (contextual filter) handler plugins.
Namespace
Drupal\views\Plugin\views\argumentCode
public function summarySort($order, $by = NULL) {
$this->query
->addOrderBy(NULL, NULL, $order, !empty($by) ? $by : $this->name_alias);
}