19 lines
408 B
PHP
19 lines
408 B
PHP
<?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'));
|
|
}
|
|
}
|