for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/*************************************************************************************/
/* This file is part of the module FeatureType */
/* */
/* For the full copyright and license information, please view the LICENSE.txt */
/* file that was distributed with this source code. */
namespace FeatureType\Hook;
use Thelia\Core\Event\Hook\HookRenderEvent;
use Thelia\Core\Hook\BaseHook;
/**
* Class ConfigurationHook
* @package FeatureType\Hook
* @author Gilles Bourgeat <[email protected]>
*/
class ConfigurationHook extends BaseHook
{
* @param HookRenderEvent $event
public function onConfigurationCatalogTop(HookRenderEvent $event)
$event->add($this->render(
'feature-type/hook/configuration-catalog.html'
));
}