You are here

function notifications_node_user_access in Notifications 6.4

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

Check user access to node

1 string reference to 'notifications_node_user_access'
notifications_notifications in ./notifications.module
Implementation of hook_notifications()

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);
}