You are here

function nat_permission in Node Auto Term [NAT] 7.2

Same name and namespace in other branches
  1. 7 nat.module \nat_permission()

Implements hook_permission().

File

./nat.module, line 89
NAT - node auto term - is a helper module that automatically creates a term using the same title as a node.

Code

function nat_permission() {
  return array(
    'administer NAT configuration' => array(
      'title' => t('Administer NAT configuration'),
      'description' => t('Administer configuration settings for the NAT module.'),
    ),
  );
}