21 lines
453 B
PHP
21 lines
453 B
PHP
<?php
|
|
|
|
namespace PlanificationLivraison\Hook;
|
|
|
|
use Thelia\Core\Event\Hook\HookRenderEvent;
|
|
use Thelia\Core\Hook\BaseHook;
|
|
|
|
/**
|
|
* Class BackHook
|
|
* @package PlanificationLivraison\Hook
|
|
*/
|
|
class BackHook extends BaseHook
|
|
{
|
|
public function onModuleConfiguration(HookRenderEvent $event)
|
|
{
|
|
$module_id = self::getModule()->getModuleId();
|
|
|
|
$event->add($this->render("module_configuration.html", ['module_id' => $module_id]));
|
|
}
|
|
}
|