function views_handler_sort::query
3.x views_handler_sort.inc | views_handler_sort::query() |
2.x views_handler_sort.inc | views_handler_sort::query() |
Called to add the sort to a query.
Overrides views_handler::query
8 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_menu_hierarchy::query in handlers/
views_handler_sort_menu_hierarchy.inc - Called to add the sort to a query.
File
- handlers/
views_handler_sort.inc, line 15
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']);
}