function taxonomy_tools_permission in Taxonomy Tools 7
Same name and namespace in other branches
- 8 taxonomy_tools.module \taxonomy_tools_permission()
Implements hook_permission().
File
- ./
taxonomy_tools.module, line 443 - Drupal hooks and functions to work with taxonomy terms.
Code
function taxonomy_tools_permission() {
return array(
'use taxonomy tools' => array(
'title' => t('Use Taxonomy Tools'),
'description' => t('Allows the user to access Taxonomy Tools overview page.'),
),
);
}