function hook_node_grants

7.x node.api.php hook_node_grants($account, $op)
6.x core.php hook_node_grants($account, $op)

Inform the node access system what permissions the user has.

This hook is for implementation by node access modules. In this hook, the module grants a user different "grant IDs" within one or more "realms". In hook_node_access_records(), the realms and grant IDs are associated with permission to view, edit, and delete individual nodes.

The realms and grant IDs can be arbitrarily defined by your node access module; it is common to use role IDs as grant IDs, but that is not required. Your module could instead maintain its own list of users, where each list has an ID. In that case, the return value of this hook would be an array of the list IDs that this user is a member of.

A node access module may implement as many realms as necessary to properly define the access privileges for the nodes.

Parameters

$account: The user object whose grants are requested.

$op: The node operation to be performed, such as "view", "update", or "delete".

Return value

An array whose keys are "realms" of grants, and whose values are arrays of the grant IDs within this realm that this user is being granted.

For a detailed example, see node_access_example.module.

Related topics

7 invocations of hook_node_grants()
block_list in drupal-6.x/modules/block/block.module
Return all blocks in the specified region for the current user.
module_disable in drupal-6.x/includes/module.inc
Disable a given set of modules.
module_enable in drupal-6.x/includes/module.inc
Enable a given list of modules.
node_access_grants in drupal-6.x/modules/node/node.module
Fetch an array of permission IDs granted to the given user ID.
node_access_rebuild in drupal-6.x/modules/node/node.module
Rebuild the node access database. This is occasionally needed by modules that make system-wide changes to access levels.

... See full list

File

documentation-6.x/developer/hooks/core.php, line 1503
These are the hooks that are invoked by the Drupal core.

Code

function hook_node_grants($account, $op) {
  if (user_access('access private content', $account)) {
    $grants['example'] = array(1);
  }
  $grants['example_owner'] = array($account->uid);
  return $grants;
}