Installation du module MailJet + on prépare le terrain pour la gestion des fiches recette

This commit is contained in:
2021-03-30 13:28:37 +02:00
parent 638f59eb8f
commit eed9abf439
27 changed files with 3612 additions and 0 deletions

View File

@@ -0,0 +1,26 @@
<?php
/*************************************************************************************/
/* This file is part of the Thelia package. */
/* */
/* Copyright (c) OpenStudio */
/* email : dev@thelia.net */
/* web : http://www.thelia.net */
/* */
/* For the full copyright and license information, please view the LICENSE.txt */
/* file that was distributed with this source code. */
/*************************************************************************************/
namespace Mailjet\Hook;
use Thelia\Core\Event\Hook\HookRenderEvent;
use Thelia\Core\Hook\BaseHook;
class HookManager extends BaseHook
{
public function onModuleConfiguration(HookRenderEvent $event)
{
$event->add(
$this->render("mailjet-configuration.html")
);
}
}