function taxonomy_tools_publisher_permission in Taxonomy Tools 8
Same name and namespace in other branches
- 7 taxonomy_tools_publisher/taxonomy_tools_publisher.module \taxonomy_tools_publisher_permission()
Implements hook_permission().
File
- taxonomy_tools_publisher/
taxonomy_tools_publisher.module, line 233 - Drupal hooks and functions to manipulate taxonomy terms.
Code
function taxonomy_tools_publisher_permission() {
return array(
'administer term schedule' => array(
'title' => t('Administer term schedule'),
'description' => t('User is able set scheduler times and change term status.'),
),
'bypass taxonomy publisher' => array(
'title' => t('Bypass Taxonomy Publisher settings'),
'description' => t('User is able to bypass restrictions set by Taxonomy Publisher.'),
),
'administer taxonomy publisher configuration' => array(
'title' => t('Administer Taxonomy Publisher configuration'),
'description' => t('User is able to access and use Taxonomy Publisher configuration page.'),
),
);
}