public function FacetapiAdapter::getPath in Facet API 6.3
Same name and namespace in other branches
- 7.2 plugins/facetapi/adapter.inc \FacetapiAdapter::getPath()
- 7 plugins/facetapi/adapter.inc \FacetapiAdapter::getPath()
Returns the path to the admin settings for a given realm.
Parameters
$realm_name: The name of the realm.
Return value
The path to the admin settings.
File
- plugins/
facetapi/ adapter.inc, line 325 - Adapter plugin and adapter related calsses.
Class
- FacetapiAdapter
- Abstract class extended by search backends that retrieves facet information from the database.
Code
public function getPath($realm_name) {
return $this->info['path'] . '/facets/' . $realm_name;
}