You are here

function admin_toolbar_tools_entity_insert in Admin Toolbar 8.2

Same name and namespace in other branches
  1. 3.x admin_toolbar_tools/admin_toolbar_tools.module \admin_toolbar_tools_entity_insert()

Implements hook_entity_insert().

File

admin_toolbar_tools/admin_toolbar_tools.module, line 58
Provides extra menu links for the core drupal toolbar.

Code

function admin_toolbar_tools_entity_insert(EntityInterface $entity) {
  $entities = \Drupal::service('admin_toolbar_tools.helper')
    ->getRebuildEntityTypes();
  if (in_array($entity
    ->getEntityTypeId(), $entities)) {
    \Drupal::service('plugin.manager.menu.link')
      ->rebuild();
  }
}