You are here

function uuid_permission in Universally Unique IDentifier 7

Implements hook_permission().

File

./uuid.module, line 86
Main module functions for the uuid module.

Code

function uuid_permission() {
  return array(
    'administer uuid' => array(
      'title' => t('Administer UUID'),
      'description' => t('Allows configuration of the UUID module and APIs.'),
    ),
  );
}