function content_access_proccess_grant in Content Access 5
Same name and namespace in other branches
- 8 content_access.module \content_access_proccess_grant()
- 6 content_access.module \content_access_proccess_grant()
- 7 content_access.module \content_access_proccess_grant()
2 calls to content_access_proccess_grant()
File
- ./
content_access.module, line 494
Code
function content_access_proccess_grant($grant, $rid, $node) {
$grant['realm'] = $rid == 'author' ? 'content_access_author' : 'content_access_rid';
$grant['gid'] = $rid == 'author' ? $node->uid : $rid;
$grant['priority'] = content_access_get_settings('priority', $node->type);
return $grant;
}