function gathercontent_permission in GatherContent 7.2
Same name and namespace in other branches
- 7.3 gathercontent.module \gathercontent_permission()
- 7 gathercontent.module \gathercontent_permission()
Implements hook_permission().
File
- ./
gathercontent.module, line 99 - 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,
),
);
}