function taxonomy_menu_trails_perm in Taxonomy Menu Trails 6.x
Same name and namespace in other branches
- 6 taxonomy_menu_trails.module \taxonomy_menu_trails_perm()
Implementation of hook_perm().
File
- ./
taxonomy_menu_trails.module, line 73 - Changes menu trail of current node to its lightest term's menu item (only if node doesn't belong to any menu)
Code
function taxonomy_menu_trails_perm() {
return array(
'administer taxonomy menu trails',
);
}