You are here

public function SolrBaseQuery::getSolrsort in Apache Solr Search 7

Same name and namespace in other branches
  1. 8 Solr_Base_Query.php \SolrBaseQuery::getSolrsort()
  2. 6.3 Solr_Base_Query.php \SolrBaseQuery::getSolrsort()

Gets the current sort.

Return value

array The current sort as an array with the keys '#name', for the name of the field, and '#direction', for the sort direction ('asc' or 'desc').

Overrides DrupalSolrQueryInterface::getSolrsort

File

./Solr_Base_Query.php, line 655
This class allows you to make operations on a query that will be sent to Apache Solr. methods such as adding and removing sorts, remove and replace parameters, adding and removing filters, getters and setters for various parameters and more

Class

SolrBaseQuery

Code

public function getSolrsort() {
  return $this->solrsort;
}