You are here

public function FacetapiUrlProcessor::removeParam in Facet API 7.2

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

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

Parameters

int $pos: The zero-based position of the value in the source data.

File

plugins/facetapi/url_processor.inc, line 171
Base url processor plugin class.

Class

FacetapiUrlProcessor
Abstract class extended by url processor plugins.

Code

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