You are here

public function FacetapiFacet::offsetSet in Facet API 7

Same name and namespace in other branches
  1. 6.3 plugins/facetapi/adapter.inc \FacetapiFacet::offsetSet()
  2. 7.2 plugins/facetapi/adapter.inc \FacetapiFacet::offsetSet()

Implements ArrayAccess::offsetSet().

File

plugins/facetapi/adapter.inc, line 1193
Adapter plugin and adapter related classes.

Class

FacetapiFacet
Wrapper around the facet definition with methods that build render arrays.

Code

public function offsetSet($offset, $value) {
  if (NULL === $offset) {
    $this->facet[] = $value;
  }
  else {
    $this->facet[$offset] = $value;
  }
}