You are here

function anode_access_test_node_grants in Apache Solr Search 6.3

Implements hook_node_grants().

File

apachesolr_access/tests/anode_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 anode_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;
}