function hook_facetapi_hash_alter in Facet API 7
Same name and namespace in other branches
- 7.2 facetapi.api.php \hook_facetapi_hash_alter()
Alters the hash that is generated for block deltas.
Parameters
type &$hash: The delta hash.
type $delta: The block's delta.
See also
https://www.drupal.org/node/1828396
1 invocation of hook_facetapi_hash_alter()
- facetapi_hash_delta in ./
facetapi.block.inc - Hashing code for deltas.
File
- ./
facetapi.api.php, line 540 - Hooks provided by the Facet API module.
Code
function hook_facetapi_hash_alter(&$hash, $delta) {
$hash = drupal_html_class($hash);
}