Quelques corrections + init du module ClickAndCollect

This commit is contained in:
2021-03-11 18:47:03 +01:00
parent 2e82f5643a
commit 57e69ddd2f
48 changed files with 2224 additions and 57 deletions

View File

@@ -0,0 +1,17 @@
<?php
namespace ClickAndCollect\Hook;
use Thelia\Core\Event\Hook\HookRenderEvent;
use Thelia\Core\Hook\BaseHook;
/**
* Class CssHook
*/
class CssHook extends BaseHook
{
public function onAddCss(HookRenderEvent $event)
{
$event->add($this->addCSS('assets/css/styles.css'));
}
}