You are here

public function Solr_Base_Query::remove_available_sort in Apache Solr Search 5.2

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

File

./Solr_Base_Query.php, line 304

Class

Solr_Base_Query

Code

public function remove_available_sort($name) {
  unset($this->available_sorts[$name]);

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