function module_grants_perm in Module Grants 6
Implementation of hook_perm().
Revisioning permissions. Note that permissions to view, revert and delete revisions already exist in node.module.
File
- ./
module_grants.module, line 17 - Module to enable access control for unpublished content. Also makes sure that modules that operate on access grants behave in the expected way when enabled together.
Code
function module_grants_perm() {
return array(
'access content summary',
);
}