You are here

public function Solr_Base_Query::set_available_sort in Apache Solr Search 5.2

Same name and namespace in other branches
  1. 6 Solr_Base_Query.php \Solr_Base_Query::set_available_sort()
  2. 6.2 Solr_Base_Query.php \Solr_Base_Query::set_available_sort()

make a sort available

Overrides Drupal_Solr_Query_Interface::set_available_sort

File

./Solr_Base_Query.php, line 297

Class

Solr_Base_Query

Code

public function set_available_sort($name, $sort) {

  // We expect non-aliased sorts to be added.
  $this->available_sorts[$name] = $sort;

  // Re-parse the sortstring.
  $this
    ->parse_sortstring();
}