function node_access_test_node_grants in Drupal 7
Same name and namespace in other branches
- 8 core/modules/node/tests/modules/node_access_test/node_access_test.module \node_access_test_node_grants()
- 9 core/modules/node/tests/modules/node_access_test/node_access_test.module \node_access_test_node_grants()
Implements hook_node_grants().
File
- modules/node/ tests/ node_access_test.module, line 15 
- A dummy module implementing node access related hooks for testing purposes.
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;
}