function content_access_permission in Content Access 7
Implements hook_perm().
File
- ./
content_access.module, line 79 - Content access module file.
Code
function content_access_permission() {
return array(
'grant content access' => array(
'title' => t('Grant content access'),
'description' => t('View and modify content access for any nodes'),
),
'grant own content access' => array(
'title' => t('Grant own content access'),
'description' => t('View and modify content access for own nodes'),
),
);
}