function taxonomy_tools_copier_permission in Taxonomy Tools 8
Same name and namespace in other branches
- 7 taxonomy_tools_copier/taxonomy_tools_copier.module \taxonomy_tools_copier_permission()
Implements hook_permission().
File
- taxonomy_tools_copier/
taxonomy_tools_copier.module, line 126 - Drupal hooks implementations and module specific functions.
Code
function taxonomy_tools_copier_permission() {
return array(
'use taxonomy copier' => array(
'title' => t('Use Taxonomy Copier'),
'description' => t('Allows the user to make copies of existing taxonomy terms.'),
),
);
}