You are here

public function apachesolr_views_handler_field::click_sort in Apache Solr Views 7

Called to determine what to tell the clicksorter.

Overrides views_handler_field::click_sort

File

handlers/apachesolr_views_handler_field.inc, line 28
Field handler for Apache Solr Views.

Class

apachesolr_views_handler_field
@file Field handler for Apache Solr Views.

Code

public function click_sort($order) {
  $sort_field = isset($this->definition['click sort field']) ? $this->definition['click sort field'] : $this->real_field;
  $this->query
    ->add_sort($sort_field, $order);
}