72 lines
3.6 KiB
Smarty
72 lines
3.6 KiB
Smarty
{*
|
|
* 2007-2015 PrestaShop
|
|
*
|
|
* NOTICE OF LICENSE
|
|
*
|
|
* This source file is subject to the Academic Free License (AFL 3.0)
|
|
* that is bundled with this package in the file LICENSE.txt.
|
|
* It is also available through the world-wide-web at this URL:
|
|
* http://opensource.org/licenses/afl-3.0.php
|
|
* If you did not receive a copy of the license and are unable to
|
|
* obtain it through the world-wide-web, please send an email
|
|
* to license@prestashop.com so we can send you a copy immediately.
|
|
*
|
|
* DISCLAIMER
|
|
*
|
|
* Do not edit or add to this file if you wish to upgrade PrestaShop to newer
|
|
* versions in the future. If you wish to customize PrestaShop for your
|
|
* needs please refer to http://www.prestashop.com for more information.
|
|
*
|
|
* @author PrestaShop SA <contact@prestashop.com>
|
|
* @copyright 2007-2017 PrestaShop SA
|
|
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
|
|
* International Registered Trademark & Property of PrestaShop SA
|
|
*}
|
|
{if isset($menus) && $menus}
|
|
<ul class="mm_menus_ul">
|
|
<li class="close_menu">
|
|
<div class="pull-left">
|
|
<span class="mm_menus_back">
|
|
<i class="icon-bar"></i>
|
|
<i class="icon-bar"></i>
|
|
<i class="icon-bar"></i>
|
|
</span>
|
|
{l s='Menu' mod='ets_megamenu'}
|
|
|
|
</div>
|
|
<div class="pull-right">
|
|
<span class="mm_menus_back_icon"></span>
|
|
{l s='Back' mod='ets_megamenu'}
|
|
</div>
|
|
</li>
|
|
{foreach from=$menus item='menu'}
|
|
<li class="mm_menus_li {if $menu.custom_class}{$menu.custom_class|escape:'html':'UTF-8'}{/if} {if $menu.sub_menu_type}mm_sub_align_{strtolower($menu.sub_menu_type)|escape:'html':'UTF-8'}{/if} {if $menu.columns}mm_has_sub{/if}">
|
|
|
|
<a href="{$menu.menu_link|escape:'html':'UTF-8'}">
|
|
{$menu.title|escape:'html':'UTF-8'}
|
|
{if $menu.columns}<span class="mm_arrow"></span>{/if}
|
|
{if $menu.bubble_text}<span class="mm_bubble_text" style="background: {if $menu.bubble_background_color}{$menu.bubble_background_color|escape:'html':'UTF-8'}{else}#FC4444{/if}; color: {if $menu.bubble_text_color|escape:'html':'UTF-8'}{$menu.bubble_text_color|escape:'html':'UTF-8'}{else}#ffffff{/if};">{$menu.bubble_text|escape:'html':'UTF-8'}</span>{/if}
|
|
</a>
|
|
|
|
{if $menu.columns}<span class="arrow closed"></span>{/if}
|
|
{if $menu.columns}
|
|
<ul class="mm_columns_ul" style="width:{$menu.sub_menu_max_width|floatval}%;">
|
|
{foreach from=$menu.columns item='column'}
|
|
<li class="mm_columns_li column_size_{$column.column_size|intval} {if $column.is_breaker}mm_breaker{/if} {if $column.blocks}mm_has_sub{/if}">
|
|
{if isset($column.blocks) && $column.blocks}
|
|
<ul class="mm_blocks_ul">
|
|
{foreach from=$column.blocks item='block'}
|
|
<li data-id-block="{$block.id_block|intval}" class="mm_blocks_li">
|
|
{hook h='displayBlock' block=$block}
|
|
</li>
|
|
{/foreach}
|
|
</ul>
|
|
{/if}
|
|
</li>
|
|
{/foreach}
|
|
</ul>
|
|
{/if}
|
|
</li>
|
|
{/foreach}
|
|
</ul>
|
|
{/if} |