You are here

function gathercontent_permission in GatherContent 7

Same name and namespace in other branches
  1. 7.3 gathercontent.module \gathercontent_permission()
  2. 7.2 gathercontent.module \gathercontent_permission()

Implements hook_permission().

File

./gathercontent.module, line 71
Imports pages from GatherContent (http://gathercontent.com/) into Drupal as nodes.

Code

function gathercontent_permission() {
  return array(
    'administer gathercontent' => array(
      'title' => t('Administer GatherContent'),
      'description' => t('Change settings and import pages from GatherContent'),
      'restrict access' => TRUE,
    ),
  );
}