W3cubDocs

/Drupal 8

function node_access_grants

node_access_grants($op, AccountInterface $account)

Fetches an array of permission IDs granted to the given user ID.

The implementation here provides only the universal "all" grant. A node access module should implement hook_node_grants() to provide a grant list for the user.

After the default grants have been loaded, we allow modules to alter the grants array by reference. This hook allows for complex business logic to be applied when integrating multiple node access modules.

Parameters

string $op: The operation that the user is trying to perform.

\Drupal\Core\Session\AccountInterface $account: The account object for the user performing the operation.

Return value

array An associative array in which the keys are realms, and the values are arrays of grants for those realms.

Related topics

Node access rights
The node access system determines who can do what to which nodes.

File

core/modules/node/node.module, line 952
The core module that allows content to be submitted to the site.

Code

function node_access_grants($op, AccountInterface $account) {
  // Fetch node access grants from other modules.
  $grants = \Drupal::moduleHandler()->invokeAll('node_grants', array($account, $op));
  // Allow modules to alter the assigned grants.
  \Drupal::moduleHandler()->alter('node_grants', $grants, $account, $op);

  return array_merge(array('all' => array(0)), $grants);
}

© 2001–2016 by the original authors
Licensed under the GNU General Public License, version 2 and later.
Drupal is a registered trademark of Dries Buytaert.
https://api.drupal.org/api/drupal/core!modules!node!node.module/function/node_access_grants/8.1.x