28 lines
502 B
PHP
28 lines
502 B
PHP
<?php
|
|
|
|
namespace Recettes\Hook;
|
|
|
|
use Recettes\Recettes;
|
|
use Thelia\Core\Event\Hook\HookRenderBlockEvent;
|
|
use Thelia\Core\Hook\BaseHook;
|
|
|
|
/**
|
|
* Class BackHook
|
|
* @package Recettes\Hook
|
|
*/
|
|
class HookManager extends baseHook
|
|
{
|
|
|
|
public function onEditTab(HookRenderBlockEvent $event)
|
|
{
|
|
$event->add(
|
|
[
|
|
"id" => 'admin-comment',
|
|
"title" => 'Recette',
|
|
"content" => ($this->render('recette.html'))
|
|
]
|
|
);
|
|
|
|
}
|
|
|
|
} |