Il manquait quelques fichiers dans Git
This commit is contained in:
23
local/modules/Axepta/Hook/HookManager.php
Executable file
23
local/modules/Axepta/Hook/HookManager.php
Executable file
@@ -0,0 +1,23 @@
|
||||
<?php
|
||||
|
||||
namespace Axepta\Hook;
|
||||
|
||||
use Thelia\Core\Event\Hook\HookRenderEvent;
|
||||
use Thelia\Core\Hook\BaseHook;
|
||||
|
||||
class HookManager extends BaseHook
|
||||
{
|
||||
public function onModuleConfigure(HookRenderEvent $event)
|
||||
{
|
||||
$event->add(
|
||||
$this->render('module-configuration.html')
|
||||
);
|
||||
}
|
||||
|
||||
public function onOrderPaymentGatewayJavascript(HookRenderEvent $event)
|
||||
{
|
||||
$event->add(
|
||||
$this->render('hook/order-payment-gateway-javascript.html')
|
||||
);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user