function tft_taxonomy_access_permission in Taxonomy File Tree 7.2
Implements hook_permission().
1 call to tft_taxonomy_access_permission()
- tft_taxonomy_access_og_permission in modules/
tft_taxonomy_access/ tft_taxonomy_access.module - Implements hook_og_permission().
File
- modules/
tft_taxonomy_access/ tft_taxonomy_access.module, line 27 - Taxonomy Access integration.
Code
function tft_taxonomy_access_permission() {
return array(
'tft manage access control' => array(
'title' => t("Manage folder access control"),
'description' => t("Manage access rules for folders in the tree."),
),
);
}