Commit du module Colissimo

This commit is contained in:
2020-09-09 12:52:39 +02:00
parent de4bc540e4
commit b5d5fd110e
123 changed files with 28431 additions and 0 deletions

View File

@@ -0,0 +1,23 @@
<?php
namespace SoColissimo\Hook;
use Thelia\Core\Event\Hook\HookRenderEvent;
use Thelia\Core\Hook\BaseHook;
/**
* Class BackHook
* @package SoColissimo\Hook
*/
class BackHook extends BaseHook
{
public function onModuleConfiguration(HookRenderEvent $event)
{
$event->add($this->render('SoColissimo/module_configuration.html'));
}
public function onModuleConfigJs(HookRenderEvent $event)
{
$event->add($this->render('SoColissimo/module-config-js.html'));
}
}