You are here

function _notifications_content_trigger_node in Notifications 7

Stores nodes to process notifications later in notifications_content_exit().

3 calls to _notifications_content_trigger_node()
notifications_content_exit in notifications_content/notifications_content.module
Implements hook_exit().
notifications_content_node_insert in notifications_content/notifications_content.module
Implements hook_node_insert().
notifications_content_node_update in notifications_content/notifications_content.module
Implements hook_node_update().

File

notifications_content/notifications_content.module, line 700
Subscriptions to content events

Code

function _notifications_content_trigger_node($node = NULL) {
  $nodes =& drupal_static(__FUNCTION__, array());
  if (isset($node)) {
    $nodes[$node->nid] = $node;
  }
  return $nodes;
}