function forum_node_insert

forum_node_insert(EntityInterface $node)

Implements hook_ENTITY_TYPE_insert() for node entities.

File

core/modules/forum/forum.module, line 212
Provides discussion forums.

Code

function forum_node_insert(EntityInterface $node) {
  if (\Drupal::service('forum_manager')->checkNodeType($node)) {
    /** @var \Drupal\forum\ForumIndexStorageInterface $forum_index_storage */
    $forum_index_storage = \Drupal::service('forum.index_storage');
    if (!empty($node->forum_tid)) {
      $forum_index_storage->create($node);
    }

    // If the node is published, update the forum index.
    if ($node->isPublished()) {
      $forum_index_storage->createIndex($node);
    }
  }
}

© 2001–2016 by the original authors
Licensed under the GNU General Public License, version 2 and later.
Drupal is a registered trademark of Dries Buytaert.
https://api.drupal.org/api/drupal/core!modules!forum!forum.module/function/forum_node_insert/8.1.x