| Versionen | |
|---|---|
| drupal6 – drupal7 | node_access_grants($op, $account = NULL) |
Fetch 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.
$op The operation that the user is trying to perform.
$account The user object for the user performing the operation. If omitted, the current user is used.
An associative array in which the keys are realms, and the values are arrays of grants for those realms.
modules/
<?php
function node_access_grants($op, $account = NULL) {
if (!isset($account)) {
$account = $GLOBALS['user'];
}
return array_merge(array('all' => array(0)), module_invoke_all('node_grants', $account, $op));
}
?>
Kommentare
Kommentar hinzufügen