You are here

taxonomy_tools_role_access.api.php in Taxonomy Tools 8

Same filename and directory in other branches
  1. 7 taxonomy_tools_role_access/taxonomy_tools_role_access.api.php

Hooks provided by the Taxonomy Role Access module.

File

taxonomy_tools_role_access/taxonomy_tools_role_access.api.php
View source
<?php

/**
 * @file
 * Hooks provided by the Taxonomy Role Access module.
 */

/**
 * Act on taxonomy term access changes.
 *
 * @param int $tid
 *   Taxonomy term ID.
 */
function hook_taxonomy_tools_role_access_term_access_change($tid) {
  $term = taxonomy_term_load($tid);
  drupal_set_message($term->name);
}

Functions

Namesort descending Description
hook_taxonomy_tools_role_access_term_access_change Act on taxonomy term access changes.