You are here

function taxonomy_tools_permission in Taxonomy Tools 8

Same name and namespace in other branches
  1. 7 taxonomy_tools.module \taxonomy_tools_permission()

Implements hook_permission().

File

./taxonomy_tools.module, line 441
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.'),
    ),
  );
}