Ajout et config du module Chronopost

This commit is contained in:
2021-09-22 23:03:39 +02:00
parent 7287fb7959
commit 08f1af5f96
60 changed files with 13945 additions and 18 deletions

View File

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