You are here

function toolbar_event_dispatcher_toolbar in Hook Event Dispatcher 8.2

Same name and namespace in other branches
  1. 3.x modules/toolbar_event_dispatcher/toolbar_event_dispatcher.module \toolbar_event_dispatcher_toolbar()

Implements hook_toolbar().

1 call to toolbar_event_dispatcher_toolbar()
ToolbarEventTest::testToolbarEvent in modules/toolbar_event_dispatcher/tests/src/Unit/Toolbar/ToolbarEventTest.php
Test the ToolbarAlterEvent.

File

modules/toolbar_event_dispatcher/toolbar_event_dispatcher.module, line 28
Toolbar event dispatcher submodule.

Code

function toolbar_event_dispatcher_toolbar() {

  /** @var \Drupal\hook_event_dispatcher\Manager\HookEventDispatcherManagerInterface $manager */
  $manager = Drupal::service('hook_event_dispatcher.manager');
  $event = new ToolbarEvent();
  $manager
    ->register($event);
}