You are here

function notifications_ui_node_subscriptions in Notifications 6.4

Find subscriptions options for this node

2 calls to notifications_ui_node_subscriptions()
notifications_ui_form_alter in notifications_ui/notifications_ui.module
Implementation of hook_form_alter()
notifications_ui_nodeapi in notifications_ui/notifications_ui.module
Display a button + js overlay

File

notifications_ui/notifications_ui.module, line 380
User Interface for subscriptions modules

Code

function notifications_ui_node_subscriptions($node, $display) {
  if (notifications_ui_user_access() && notifications_ui_node_options($node->type, $display)) {
    return notifications_ui_object_subscriptions('node', $node);
  }
}