You are here

function hook_taxonomy_tools_node_access_grants_rebuild in Taxonomy Tools 8

Same name and namespace in other branches
  1. 7 taxonomy_tools.api.php \hook_taxonomy_tools_node_access_grants_rebuild()

Act on node access grants rebuild.

Parameters

stdClass $node: Node object.

1 invocation of hook_taxonomy_tools_node_access_grants_rebuild()
taxonomy_tools_rebuild_access_grants in ./taxonomy_tools.module
Builds new access grants for nodes associated with specific taxonomy term.

File

./taxonomy_tools.api.php, line 52
Hooks provided by the Taxonomy Tools module.

Code

function hook_taxonomy_tools_node_access_grants_rebuild($node) {
  drupal_set_message($node->title);
}