You are here

function permissions_by_term_permission in Permissions by Term 7

Implements hook_permission().

File

./permissions_by_term.module, line 30
Allows access to terms in a vocabulary to be limited by user or role.

Code

function permissions_by_term_permission() {
  return array(
    'show term permission form on term page' => array(
      'title' => t('Term permission form on term page'),
      'description' => t('Enables the specific role to edit
      the term permissions on the term edit page.'),
    ),
  );
}