function views_handler_sort::query
Same name in other branches
- 7.x-3.x handlers/views_handler_sort.inc \views_handler_sort::query()
Called to add the sort to a query.
Overrides views_handler::query
9 methods override views_handler_sort::query()
- views_handler_sort_broken::query in handlers/
views_handler_sort.inc - Called to add the sort to a query.
- views_handler_sort_comment_thread::query in modules/
comment/ views_handler_sort_comment_thread.inc - Called to add the sort to a query.
- views_handler_sort_date::query in handlers/
views_handler_sort_date.inc - Called to add the sort to a query.
- views_handler_sort_formula::query in handlers/
views_handler_sort_formula.inc - Called to add the sort to a query.
- views_handler_sort_group_by_numeric::query in handlers/
views_handler_sort_group_by_numeric.inc - Called to add the field to a query.
File
-
handlers/
views_handler_sort.inc, line 21
Class
- views_handler_sort
- Base sort handler that has no options and performs a simple sort
Code
function query() {
$this->ensure_my_table();
// Add the field.
$this->query
->add_orderby($this->table_alias, $this->real_field, $this->options['order']);
}