function node_test_node_access_records_alter

Same name and namespace in other branches
  1. 7.x modules/node/tests/node_test.module \node_test_node_access_records_alter()
  2. 9 core/modules/node/tests/modules/node_test/node_test.module \node_test_node_access_records_alter()
  3. 8.9.x core/modules/node/tests/modules/node_test/node_test.module \node_test_node_access_records_alter()
  4. 10 core/modules/node/tests/modules/node_test/node_test.module \node_test_node_access_records_alter()

Implements hook_node_access_records_alter().

File

core/modules/node/tests/modules/node_test/node_test.module, line 106

Code

function node_test_node_access_records_alter(&$grants, NodeInterface $node) {
    if (!empty($grants)) {
        foreach ($grants as $key => $grant) {
            // Alter grant from test_page_realm to test_alter_realm and modify the gid.
            if ($grant['realm'] == 'test_page_realm' && $node->isPromoted()) {
                $grants[$key]['realm'] = 'test_alter_realm';
                $grants[$key]['gid'] = 2;
            }
        }
    }
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.