You are here

public function FacetapiUrlProcessor::removeParam in Facet API 6.3

Same name and namespace in other branches
  1. 7.2 plugins/facetapi/url_processor.inc \FacetapiUrlProcessor::removeParam()
  2. 7 plugins/facetapi/url_processor.inc \FacetapiUrlProcessor::removeParam()

Removes an item from the $this->params array.

File

plugins/facetapi/url_processor.inc, line 134
Adapter and standard plugin class.

Class

FacetapiUrlProcessor

Code

public function removeParam($pos) {
  unset($this->params[$this->filterKey][$pos]);
}