You are here

function footnotes_field_permission in Footnotes 7.2

Same name and namespace in other branches
  1. 7.3 footnotes_field/footnotes_field.module \footnotes_field_permission()

Implements hook_permission().

File

footnotes_field/footnotes_field.module, line 36
Hooks and general logic for the Footnotes field module.

Code

function footnotes_field_permission() {
  return array(
    'administer footnotes fields' => array(
      'title' => t('Administer footnotes fields'),
      'description' => t('Perform administration tasks for footnotes fields.'),
    ),
  );
}