You are here

function entity_hierarchy_microsite_node_insert in Entity Reference Hierarchy 3.x

Same name and namespace in other branches
  1. 8.2 modules/entity_hierarchy_microsite/entity_hierarchy_microsite.module \entity_hierarchy_microsite_node_insert()

Implements hook_ENTITY_TYPE_insert().

File

modules/entity_hierarchy_microsite/entity_hierarchy_microsite.module, line 29
Contains main module functionality.

Code

function entity_hierarchy_microsite_node_insert(NodeInterface $node) {
  \Drupal::service('class_resolver')
    ->getInstanceFromDefinition(EntityHooks::class)
    ->onNodeInsert($node);
}