Commit du répertoire FedEx

This commit is contained in:
2020-11-13 10:50:08 +01:00
parent 898aa9df75
commit 63504d5f90
21 changed files with 1102 additions and 0 deletions

View File

@@ -0,0 +1,21 @@
<?php
namespace FedEx\Hook;
use Thelia\Core\Event\Hook\HookRenderEvent;
use Thelia\Core\Hook\BaseHook;
/**
* Class HookManager
* @package FedEx\Hook
* @author Laurent LE CORRE <laurent@thecoredev.fr>
*/
class HookManager extends BaseHook
{
public function onModuleConfiguration(HookRenderEvent $event)
{
$module_id = self::getModule()->getModuleId();
$event->add($this->render("module_configuration.html", ['module_id' => $module_id]));
}
}