You are here

function acl_node_test_node_access_records in ACL 8

Same name and namespace in other branches
  1. 7 tests/acl_node_test.module \acl_node_test_node_access_records()

Implements hook_node_access_records().

Implicit View by All is allowed.

File

tests/modules/acl_node_test/acl_node_test.module, line 40
Dummy module implementing node related hooks to test API interaction with the Node module.

Code

function acl_node_test_node_access_records(NodeInterface $node) {
  $grants = array();
  $grants[] = array(
    'realm' => 'test_' . $node
      ->getType() . '_realm',
    'gid' => 1,
    'grant_view' => 1,
    'grant_update' => 0,
    'grant_delete' => 0,
    'priority' => 0,
  );
  return $grants;
}