15 lines
318 B
PHP
15 lines
318 B
PHP
<?php
|
|
namespace HookAdminHome\Hook;
|
|
|
|
use Thelia\Core\Event\Hook\HookRenderEvent;
|
|
use Thelia\Core\Hook\BaseHook;
|
|
|
|
class HookAdminManager extends BaseHook
|
|
{
|
|
public function onModuleConfiguration(HookRenderEvent $event)
|
|
{
|
|
$event->add(
|
|
$this->render("admin-home-config.html")
|
|
);
|
|
}
|
|
} |