PointRetrait : c'est OK pour la modification sur le premier onglet "Généralités"

This commit is contained in:
2021-02-27 05:30:21 +01:00
parent fb19b06c17
commit ac82e779da
15 changed files with 407 additions and 142 deletions

View File

@@ -0,0 +1,17 @@
<?php
namespace PointRetrait\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'));
}
}