Initial commit

This commit is contained in:
2021-03-23 13:54:38 +01:00
commit 82b142ff95
16941 changed files with 2617212 additions and 0 deletions

View File

@@ -0,0 +1,21 @@
<?php
namespace Shortcuts\Hook;
use Thelia\Core\Event\Hook\HookRenderEvent;
// use Thelia\Core\Event\Hook\HookRenderBlockEvent;
use Thelia\Core\Hook\BaseHook;
/**
* Class Shortcuts
* @package Shortcuts\Hook
* @author Julien Chanséaume <jchanseaume@openstudio.fr>
*/
class Shortcuts extends BaseHook
{
public function onMainTopbarTop(HookRenderEvent $event)
{
$event->add($this->render("shortcuts.hook.html", $event->getArguments()));
}
}