You are here

function book_node_presave in Zircon Profile 8.0

Same name and namespace in other branches
  1. 8 core/modules/book/book.module \book_node_presave()

Implements hook_ENTITY_TYPE_presave() for node entities.

File

core/modules/book/book.module, line 252
Allows users to create and organize related content in an outline.

Code

function book_node_presave(EntityInterface $node) {

  // Make sure a new node gets a new menu link.
  if ($node
    ->isNew()) {
    $node->book['nid'] = NULL;
  }
}