Régularisation de commits manquants

This commit is contained in:
2020-06-24 13:10:52 +02:00
parent 6810659202
commit 2bc59082d9
941 changed files with 89385 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
<?php
namespace DuplicateOrder\Hook;
use Thelia\Core\Event\Hook\HookRenderEvent;
use Thelia\Core\Hook\BaseHook;
class OrderDetailsHook extends BaseHook
{
public function onAccountOrderBottom(HookRenderEvent $event)
{
$content = $this->render("duplicate-order.html", ["orderId"=>$event->getArgument("order")]);
$event->add($content);
}
}