public function Facet::getUseHierarchy in Facets 8
Returns the value of the use_hierarchy boolean.
This will return true when the results in the facet should be rendered in a hierarchical structure.
Return value
bool A boolean flag indicating if results should be rendered using hierarchy.
Overrides FacetInterface::getUseHierarchy
File
- src/
Entity/ Facet.php, line 548
Class
- Facet
- Defines the facet configuration entity.
Namespace
Drupal\facets\EntityCode
public function getUseHierarchy() {
return $this->use_hierarchy;
}