vendor/dklemmt/contao_dk_mmenu/src/Resources/contao/config/config.php line 19

Open in your IDE?
  1. <?php
  2. declare(strict_types=1);
  3. /*
  4.  * This file is part of the ContaoMmenuBundle.
  5.  *
  6.  * (c) Dirk Klemmt
  7.  * (c) inspiredminds
  8.  *
  9.  * @license MIT
  10.  */
  11. use DirkKlemmt\ContaoMmenuBundle\EventListener\SqlCompileCommandsListener;
  12. use DirkKlemmt\ContaoMmenuBundle\FrontendModule\MmenuCustomModule;
  13. use DirkKlemmt\ContaoMmenuBundle\FrontendModule\MmenuHtmlModule;
  14. use DirkKlemmt\ContaoMmenuBundle\FrontendModule\MmenuModule;
  15. array_insert($GLOBALS['FE_MOD'], 3, [
  16.     'navigationMenu' => [
  17.         'mmenu' => MmenuModule::class,
  18.         'mmenuCustom' => MmenuCustomModule::class,
  19.     ],
  20.     'miscellaneous' => [
  21.         'mmenuHtml' => MmenuHtmlModule::class,
  22.     ],
  23. ]);
  24. $GLOBALS['TL_HOOKS']['sqlCompileCommands'][] = [SqlCompileCommandsListener::class, '__invoke'];