You are here

function node_test_node_grants_alter in Drupal 7

Same name and namespace in other branches
  1. 8 core/modules/node/tests/modules/node_test/node_test.module \node_test_node_grants_alter()
  2. 9 core/modules/node/tests/modules/node_test/node_test.module \node_test_node_grants_alter()

Implements hook_node_grants_alter().

File

modules/node/tests/node_test.module, line 120
A dummy module for testing node related hooks.

Code

function node_test_node_grants_alter(&$grants, $account, $op) {

  // Return an empty array of grants to prove that we can alter by reference.
  $grants = array();
}