apachesolr_views_handler_sort.inc in Apache Solr Views 6
File
handlers/apachesolr_views_handler_sort.inc
View source
<?php
class apachesolr_views_handler_sort extends views_handler_sort {
public function query() {
$special_sort_fields = array(
'name' => 'sort_name',
'title' => 'sort_title',
);
$order = strtolower($this->options['order']);
if (empty($special_sort_fields[$this->real_field])) {
$this->query
->add_sort($this->real_field, $order);
}
else {
$this->query
->add_sort($special_sort_fields[$this->real_field], $order);
}
}
}