You are here

function views_handler_field::click_sort in Views (for Drupal 7) 6.2

Same name and namespace in other branches
  1. 6.3 handlers/views_handler_field.inc \views_handler_field::click_sort()
  2. 7.3 handlers/views_handler_field.inc \views_handler_field::click_sort()

Called to determine what to tell the clicksorter.

1 method overrides views_handler_field::click_sort()
views_handler_field_search_score::click_sort in modules/search/views_handler_field_search_score.inc
Called to determine what to tell the clicksorter.

File

handlers/views_handler_field.inc, line 113

Class

views_handler_field
Base field handler that has no options and renders an unformatted field.

Code

function click_sort($order) {
  $this->query
    ->add_orderby($this->table_alias, $this->real_field, $order, $this->field_alias);
}