| 7 node_access_test.module | node_access_test_node_grants($account, $op) |
| 8 node_access_test.module | node_access_test_node_grants($account, $op) |
Implements hook_node_grants().
File
- modules/
node/ tests/ node_access_test.module, line 13 - Dummy module implementing node access related hooks to test API interaction with the Node module. This module restricts view permission to those with a special 'node test view' permission.
Code
function node_access_test_node_grants($account, $op) {
$grants = array();
// First grant a grant to the author for own content.
$grants['node_access_test_author'] = array($account->uid);
if ($op == 'view' && user_access('node test view', $account)) {
$grants['node_access_test'] = array(8888, 8889);
}
if ($op == 'view' && $account->uid == variable_get('node_test_node_access_all_uid', 0)) {
$grants['node_access_all'] = array(0);
}
return $grants;
}
Login or register to post comments