[11/05/2025] On remplace les modules Colissimo par le combo ColissimoHomeDelivery + ColissimoPickupPoint + ColissimoLabel

This commit is contained in:
2025-05-11 23:38:10 +02:00
parent a09aa11f16
commit 49b1a63ecc
1528 changed files with 18449 additions and 62 deletions

View File

@@ -0,0 +1,17 @@
<?php
namespace ColissimoLabel\Hook\Back;
use Thelia\Core\Event\Hook\HookRenderEvent;
use Thelia\Core\Hook\BaseHook;
class MenuHook extends BaseHook
{
public function onMainInTopMenuItems(HookRenderEvent $event)
{
$event->add(
$this->render('colissimo-label/hook/main.in.top.menu.items.html', [])
);
}
}

View File

@@ -0,0 +1,18 @@
<?php
namespace ColissimoLabel\Hook\Back;
use ColissimoLabel\ColissimoLabel;
use Thelia\Core\Event\Hook\HookRenderEvent;
use Thelia\Core\Hook\BaseHook;
/**
* @author Gilles Bourgeat >gilles.bourgeat@gmail.com>
*/
class OrderEditHook extends BaseHook
{
public function onOrderEditJs(HookRenderEvent $event)
{
$event->add($this->render('colissimo-label/hook/order-edit-js.html'));
}
}