You are here

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

Called to determine what to tell the clicksorter.

Overrides views_handler_field::click_sort

File

modules/search/views_handler_field_search_score.inc, line 68

Class

views_handler_field_search_score
Field handler to provide simple renderer that allows linking to a node.

Code

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