You are here

function notifications_node_user_access in Notifications 7

Same name and namespace in other branches
  1. 6.4 includes/node.inc \notifications_node_user_access()

Check user access to node

File

includes/node.inc, line 70
Notifications node API for use by plug-in modules providing node related features

Code

function notifications_node_user_access($node, $account) {
  return node_access('view', $node, $account);
}