You are here

public function Facet::getExpandHierarchy in Facets 8

Returns the value of the expand_hierarchy boolean.

This will return true when the results in the facet should be expanded in a hierarchical structure, regardless of active state.

Return value

bool Wether or not results should always be expanded using hierarchy.

Overrides FacetInterface::getExpandHierarchy

File

src/Entity/Facet.php, line 576

Class

Facet
Defines the facet configuration entity.

Namespace

Drupal\facets\Entity

Code

public function getExpandHierarchy() {
  return $this->expand_hierarchy;
}