You are here

function uuid_link_permission in UUID Link 7

Same name and namespace in other branches
  1. 6 uuid_link.module \uuid_link_permission()

Implements hook_permission().

File

./uuid_link.module, line 11
Provides a filter and UI for adding links to entities that are not affected by changes in URL alias.

Code

function uuid_link_permission() {
  return array(
    'access uuid link' => array(
      'title' => t('Access UUID Link'),
      'description' => t('Access UUID Link user interface.'),
    ),
  );
}