function node_access_test_language_node_grants

Implements hook_node_grants().

This module defines a single grant realm. All users belong to this group.

File

drupal/core/modules/node/tests/modules/node_access_test_language/node_access_test_language.module, line 18
Test module with a language-aware node access implementation.

Code

function node_access_test_language_node_grants($account, $op) {
  $grants['node_access_language_test'] = array(
    7888,
  );
  return $grants;
}