You are here

function apachesolr_views_handler_field_date::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_date.inc, line 24

Class

apachesolr_views_handler_field_date
Field handler for Solr date fields.

Code

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);
}