local/modules/HookAdminHome/Hook/HookAdminManager.php line 20

  1. <?php
  2. /*
  3.  * This file is part of the Thelia package.
  4.  * http://www.thelia.net
  5.  *
  6.  * (c) OpenStudio <info@thelia.net>
  7.  *
  8.  * For the full copyright and license information, please view the LICENSE
  9.  * file that was distributed with this source code.
  10.  */
  11. namespace HookAdminHome\Hook;
  12. use Thelia\Core\Event\Hook\HookRenderEvent;
  13. use Thelia\Core\Hook\BaseHook;
  14. class HookAdminManager extends BaseHook
  15. {
  16.     public function onModuleConfiguration(HookRenderEvent $event): void
  17.     {
  18.         $event->add(
  19.             $this->render('admin-home-config.html')
  20.         );
  21.     }
  22. }