function node_test_node_grants_alter
Implements hook_node_grants_alter().
Archivo
- drupal-7.x/
modules/ node/ tests/ node_test.module, line 120 - A dummy module for testing node related hooks.
Código
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();
}