You are here

function exclude_node_title_node_update in Exclude Node Title 8

Same name and namespace in other branches
  1. 7 exclude_node_title.module \exclude_node_title_node_update()

Implements hook_node_update().

File

./exclude_node_title.module, line 186
Primarily Drupal hooks and global API functions to exclude node titles.

Code

function exclude_node_title_node_update(NodeInterface $node) {
  if (exclude_node_title_check_perm($node)) {
    exclude_node_title_set_flag($node, $node->exclude_node_title);
  }
}