function views_handler_argument::summary_sort
Same name in other branches
- 7.x-3.x handlers/views_handler_argument.inc \views_handler_argument::summary_sort()
Sorts the summary based upon the user's selection. The base variant of this is usually adequte.
Parameters
$order: The order selected in the UI.
1 call to views_handler_argument::summary_sort()
- views_handler_argument::default_summary in handlers/
views_handler_argument.inc - Default action: summary.
File
-
handlers/
views_handler_argument.inc, line 647
Class
- views_handler_argument
- Base class for arguments.
Code
function summary_sort($order, $by = NULL) {
$this->query
->add_orderby(NULL, NULL, $order, !empty($by) ? $by : $this->name_alias);
}