You are here

function oa_notifications_node_update in Open Atrium Notifications 7.2

Implements hook_node_update().

File

./oa_notifications.module, line 429

Code

function oa_notifications_node_update($node) {
  if (oa_notifications_is_notification_type($node)) {
    if ($node->status == NODE_NOT_PUBLISHED) {

      // Skip notifications for draft content.
      oa_notification_skip(TRUE);
    }
  }
}