You are here

function gathercontent_permission in GatherContent 7.3

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

Implements hook_permission().

File

./gathercontent.module, line 19

Code

function gathercontent_permission() {
  return array(
    'administer gathercontent' => array(
      'title' => t('Administer GatherContent'),
      'description' => t('Access all GatherContent pages'),
    ),
    'administer mapping' => array(
      'title' => t('Administer GatherContent mapping'),
      'description' => t('Access all GatherContent mapping pages'),
    ),
    'create mapping' => array(
      'title' => t('Create GatherContent mapping'),
      'description' => t('Create GatherContent mapping'),
    ),
  );
}