You are here

function admin_content_notification_node_update in Admin Content Notification 8

Same name and namespace in other branches
  1. 8.3 admin_content_notification.module \admin_content_notification_node_update()
  2. 8.2 admin_content_notification.module \admin_content_notification_node_update()
  3. 7.2 admin_content_notification.module \admin_content_notification_node_update()

Implements hook_node_update().

File

./admin_content_notification.module, line 37
Module File, consist all related hooks.

Code

function admin_content_notification_node_update(EntityInterface $node) {
  if (!empty(\Drupal::config('admin_content_notification.settings')
    ->get('admin_content_notification_trigger_on_node_update')) && admin_content_notification_is_current_user_role_allowed_to_send_notification()) {
    admin_content_notification_send_email($node);
  }
}