1 node_access_test.module node_access_test_node_grants($account, $op)

Implements hook_node_grants().

File

core/modules/node/tests/node_access_test/node_access_test.module, line 14
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 == state_get('node_test_node_access_all_uid', 0)) {
    $grants['node_access_all'] = array(0);
  }
  return $grants;
}