52 lines
2.2 KiB
PHP
52 lines
2.2 KiB
PHP
<?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);
|
|
}
|
|
}
|