You are here

function notifications_content_node_update in Notifications 7

Implements hook_node_update().

File

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

Code

function notifications_content_node_update($node) {

  // Content that was previously published has been updated.
  if (!empty($node->status) && empty($node->notifications_status)) {
    _notifications_content_trigger_node($node);
  }
}