You are here

function hook_facetapi_hash_alter in Facet API 7.2

Same name and namespace in other branches
  1. 7 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 535
Hooks provided by the Facet API module.

Code

function hook_facetapi_hash_alter(&$hash, $delta) {
  $hash = drupal_html_class($hash);
}