You are here

function book_node_insert in Zircon Profile 8.0

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

Implements hook_ENTITY_TYPE_insert() for node entities.

File

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

Code

function book_node_insert(EntityInterface $node) {

  /** @var \Drupal\book\BookManagerInterface $book_manager */
  $book_manager = \Drupal::service('book.manager');
  $book_manager
    ->updateOutline($node);
}