Initial Commit
This commit is contained in:
51
local/modules/HookNavigation/Hook/FrontHook.php
Normal file
51
local/modules/HookNavigation/Hook/FrontHook.php
Normal file
@@ -0,0 +1,51 @@
|
||||
<?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 HookNavigation\Hook;
|
||||
|
||||
use HookNavigation\HookNavigation;
|
||||
use HookNavigation\Model\Config\HookNavigationConfigValue;
|
||||
use Thelia\Core\Event\Hook\HookRenderBlockEvent;
|
||||
use Thelia\Core\Event\Hook\HookRenderEvent;
|
||||
use Thelia\Core\Hook\BaseHook;
|
||||
|
||||
/**
|
||||
* Class FrontHook.
|
||||
*
|
||||
* @author Julien Chanséaume <jchanseaume@openstudio.fr>, Etienne PERRIERE <eperriere@openstudio.fr> - OpenStudio
|
||||
*/
|
||||
class FrontHook extends BaseHook
|
||||
{
|
||||
public function onMainFooterBody(HookRenderBlockEvent $event)
|
||||
{
|
||||
$bodyConfig = HookNavigation::getConfigValue(HookNavigationConfigValue::FOOTER_BODY_FOLDER_ID);
|
||||
|
||||
$content = trim($this->render('main-footer-body.html', ['bodyFolderId' => $bodyConfig]));
|
||||
if ('' != $content) {
|
||||
$event->add(array(
|
||||
'id' => 'navigation-footer-body',
|
||||
'class' => 'links',
|
||||
'title' => $this->trans('Latest articles', array(), HookNavigation::MESSAGE_DOMAIN),
|
||||
'content' => $content,
|
||||
));
|
||||
}
|
||||
}
|
||||
|
||||
public function onMainFooterBottom(HookRenderEvent $event)
|
||||
{
|
||||
$bottomConfig = HookNavigation::getConfigValue(HookNavigationConfigValue::FOOTER_BOTTOM_FOLDER_ID);
|
||||
|
||||
$content = $this->render('main-footer-bottom.html', ['bottomFolderId' => $bottomConfig]);
|
||||
$event->add($content);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user