node_access_grants

Хочешь помочь с переводом? Это очень просто и быстро. Лишь зарегистрируйся, и можешь тут же начать переводить.

modules/node/node.module, строка 2883

Версии
5
node_access_grants($op, $uid = NULL)
6
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.

$uid The user ID 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.

Связанные темы

▾ 3 функции вызывают node_access_grants()

node_access in modules/node/node.module
Устанавливает может ли текущий пользователь выполнять заданные действия на определённом ноде.
node_access_view_all_nodes in modules/node/node.module
Determine whether the user has a global viewing grant for all nodes.
_node_access_where_sql in modules/node/node.module
Generate an SQL where clause for use in fetching a node listing.

Код

<?php
function node_access_grants($op, $uid = NULL) {
  global $user;

  if (isset($uid)) {
    $user_object = user_load(array('uid' => $uid));
  }
  else {
    $user_object = $user;
  }

  return array_merge(array('all' => array(0)), module_invoke_all('node_grants', $user_object, $op));
}
?>
Войдите или зарегистрируйтесь, чтобы получить возможность отправлять комментарии

Вход в систему