You are here

function resource_hints_permission in Resource Hints 7.2

Same name and namespace in other branches
  1. 7 resource_hints.module \resource_hints_permission()

Implements hook_permission().

File

./resource_hints.module, line 33
Modules hooks for the resource hints module.

Code

function resource_hints_permission() {
  return array(
    'administer resource hints' => array(
      'title' => t('Administer Resource Hints'),
      'description' => t('Configure settings for resource hints'),
    ),
  );
}