first commit
31
modules/ets_megamenu/cache/index.php
vendored
Normal file
@@ -0,0 +1,31 @@
|
||||
<?php
|
||||
/**
|
||||
* 2007-2021 ETS-Soft
|
||||
*
|
||||
* NOTICE OF LICENSE
|
||||
*
|
||||
* This file is not open source! Each license that you purchased is only available for 1 wesite only.
|
||||
* If you want to use this file on more websites (or projects), you need to purchase additional licenses.
|
||||
* You are not allowed to redistribute, resell, lease, license, sub-license or offer our resources to any third party.
|
||||
*
|
||||
* 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 contact us for extra customization service at an affordable price
|
||||
*
|
||||
* @author ETS-Soft <etssoft.jsc@gmail.com>
|
||||
* @copyright 2007-2021 ETS-Soft
|
||||
* @license Valid for 1 website (or project) for each purchase of license
|
||||
* International Registered Trademark & Property of ETS-Soft
|
||||
*/
|
||||
|
||||
header("Expires: Mon, 26 Jul 1997 05:00:00 GMT");
|
||||
header("Last-Modified: ".gmdate("D, d M Y H:i:s")." GMT");
|
||||
|
||||
header("Cache-Control: no-store, no-cache, must-revalidate");
|
||||
header("Cache-Control: post-check=0, pre-check=0", false);
|
||||
header("Pragma: no-cache");
|
||||
|
||||
header("Location: ../");
|
||||
exit;
|
||||
113
modules/ets_megamenu/classes/MM_Block.php
Normal file
@@ -0,0 +1,113 @@
|
||||
<?php
|
||||
/**
|
||||
* 2007-2021 ETS-Soft
|
||||
*
|
||||
* NOTICE OF LICENSE
|
||||
*
|
||||
* This file is not open source! Each license that you purchased is only available for 1 wesite only.
|
||||
* If you want to use this file on more websites (or projects), you need to purchase additional licenses.
|
||||
* You are not allowed to redistribute, resell, lease, license, sub-license or offer our resources to any third party.
|
||||
*
|
||||
* 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 contact us for extra customization service at an affordable price
|
||||
*
|
||||
* @author ETS-Soft <etssoft.jsc@gmail.com>
|
||||
* @copyright 2007-2021 ETS-Soft
|
||||
* @license Valid for 1 website (or project) for each purchase of license
|
||||
* International Registered Trademark & Property of ETS-Soft
|
||||
*/
|
||||
|
||||
if (!defined('_PS_VERSION_'))
|
||||
exit;
|
||||
class MM_Block extends MM_Obj
|
||||
{
|
||||
public $id_block;
|
||||
public $title;
|
||||
public $title_link;
|
||||
public $content;
|
||||
public $enabled;
|
||||
public $sort_order;
|
||||
public $id_categories;
|
||||
public $order_by_category;
|
||||
public $id_manufacturers;
|
||||
public $order_by_manufacturers;
|
||||
public $display_mnu_img;
|
||||
public $display_mnu_name;
|
||||
public $display_mnu_inline;
|
||||
public $id_suppliers;
|
||||
public $order_by_suppliers;
|
||||
public $display_suppliers_img;
|
||||
public $display_suppliers_name;
|
||||
public $display_suppliers_inline;
|
||||
public $id_cmss;
|
||||
public $block_type;
|
||||
public $image;
|
||||
public $custom_class;
|
||||
public $display_title;
|
||||
public $id_column;
|
||||
public $image_link;
|
||||
public $product_type;
|
||||
public $id_products;
|
||||
public $product_count;
|
||||
public $combination_enabled;
|
||||
public $show_description;
|
||||
public $show_clock;
|
||||
public static $definition = array(
|
||||
'table' => 'ets_mm_block',
|
||||
'primary' => 'id_block',
|
||||
'multilang' => true,
|
||||
'fields' => array(
|
||||
'sort_order' => array('type' => self::TYPE_INT),
|
||||
'id_column' => array('type' => self::TYPE_INT),
|
||||
'id_categories' => array('type' => self::TYPE_STRING),
|
||||
'order_by_category' => array('type' => self::TYPE_STRING),
|
||||
'id_manufacturers' => array('type' => self::TYPE_STRING),
|
||||
'order_by_manufacturers' => array('type' => self::TYPE_STRING),
|
||||
'display_mnu_img' => array('type' => self::TYPE_INT),
|
||||
'display_mnu_name' => array('type' => self::TYPE_INT),
|
||||
'display_mnu_inline' => array('type' => self::TYPE_STRING),
|
||||
'id_suppliers' => array('type' => self::TYPE_STRING),
|
||||
'order_by_suppliers' => array('type' => self::TYPE_STRING),
|
||||
'display_suppliers_img' => array('type' => self::TYPE_INT),
|
||||
'display_suppliers_name' => array('type' => self::TYPE_INT),
|
||||
'display_suppliers_inline' => array('type' => self::TYPE_STRING),
|
||||
'id_cmss' => array('type' => self::TYPE_STRING),
|
||||
'product_type' => array('type' => self::TYPE_STRING),
|
||||
'id_products' => array('type' => self::TYPE_STRING),
|
||||
'product_count' => array('type' => self::TYPE_INT),
|
||||
'enabled' => array('type' => self::TYPE_INT),
|
||||
'image' => array('type' => self::TYPE_STRING,'lang' => false),
|
||||
'block_type' => array('type' => self::TYPE_STRING),
|
||||
'display_title' => array('type' => self::TYPE_INT),
|
||||
'show_description' => array('type' => self::TYPE_INT),
|
||||
'show_clock' => array('type' => self::TYPE_INT),
|
||||
// Lang fields
|
||||
'title' => array('type' => self::TYPE_STRING, 'lang' => true),
|
||||
'title_link' => array('type' => self::TYPE_STRING, 'lang' => true),
|
||||
'image_link' => array('type' => self::TYPE_STRING, 'lang' => true),
|
||||
'content' => array('type' => self::TYPE_HTML, 'lang' => true),
|
||||
)
|
||||
);
|
||||
public function __construct($id_item = null, $id_lang = null, $id_shop = null, Context $context = null)
|
||||
{
|
||||
parent::__construct($id_item, $id_lang, $id_shop);
|
||||
$languages = Language::getLanguages(false);
|
||||
foreach($languages as $lang)
|
||||
{
|
||||
foreach(self::$definition['fields'] as $field => $params)
|
||||
{
|
||||
$temp = $this->$field;
|
||||
if(isset($params['lang']) && $params['lang'] && !isset($temp[$lang['id_lang']]))
|
||||
{
|
||||
$temp[$lang['id_lang']] = '';
|
||||
}
|
||||
$this->$field = $temp;
|
||||
}
|
||||
}
|
||||
unset($context);
|
||||
$this->setFields(Ets_megamenu::$blocks);
|
||||
}
|
||||
}
|
||||
62
modules/ets_megamenu/classes/MM_Cache.php
Normal file
@@ -0,0 +1,62 @@
|
||||
<?php
|
||||
/**
|
||||
* 2007-2021 ETS-Soft
|
||||
*
|
||||
* NOTICE OF LICENSE
|
||||
*
|
||||
* This file is not open source! Each license that you purchased is only available for 1 wesite only.
|
||||
* If you want to use this file on more websites (or projects), you need to purchase additional licenses.
|
||||
* You are not allowed to redistribute, resell, lease, license, sub-license or offer our resources to any third party.
|
||||
*
|
||||
* 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 contact us for extra customization service at an affordable price
|
||||
*
|
||||
* @author ETS-Soft <etssoft.jsc@gmail.com>
|
||||
* @copyright 2007-2021 ETS-Soft
|
||||
* @license Valid for 1 website (or project) for each purchase of license
|
||||
* International Registered Trademark & Property of ETS-Soft
|
||||
*/
|
||||
|
||||
class MM_Cache {
|
||||
private $expire = 1;
|
||||
public function __construct()
|
||||
{
|
||||
$this->expire = (int)Configuration::get('ETS_MM_CACHE_LIFE_TIME') >=1 ? (int)Configuration::get('ETS_MM_CACHE_LIFE_TIME') : 1;
|
||||
}
|
||||
public function get($key) {
|
||||
$files = glob(dirname(__FILE__).'/../cache/' . 'cache.' . preg_replace('/[^A-Z0-9\._-]/i', '', $key) . '.*');
|
||||
if ($files) {
|
||||
$cache = Tools::file_get_contents($files[0]);
|
||||
foreach ($files as $file) {
|
||||
$time = (int)Tools::substr(strrchr($file, '.'), 1);
|
||||
if ($time*3600 < time()) {
|
||||
if (file_exists($file)) {
|
||||
@unlink($file);
|
||||
}
|
||||
}
|
||||
}
|
||||
return $cache;
|
||||
}
|
||||
return false;
|
||||
}
|
||||
public function set($key, $value) {
|
||||
$this->delete($key);
|
||||
$file = dirname(__FILE__).'/../cache/' . 'cache.' . preg_replace('/[^A-Z0-9\._-]/i', '', $key) . '.' . (time() + (int)$this->expire*3600);
|
||||
$handle = fopen($file, 'w');
|
||||
fwrite($handle, $value ? $value : '');
|
||||
fclose($handle);
|
||||
}
|
||||
public function delete($key = false) {
|
||||
$files = glob(dirname(__FILE__).'/../cache/' . ($key ? 'cache.' . preg_replace('/[^A-Z0-9\._-]/i', '', $key) : '') . '.*');
|
||||
if ($files) {
|
||||
foreach ($files as $file) {
|
||||
if (file_exists($file) && strpos($file,'index.php')===false) {
|
||||
unlink($file);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
64
modules/ets_megamenu/classes/MM_Column.php
Normal file
@@ -0,0 +1,64 @@
|
||||
<?php
|
||||
/**
|
||||
* 2007-2021 ETS-Soft
|
||||
*
|
||||
* NOTICE OF LICENSE
|
||||
*
|
||||
* This file is not open source! Each license that you purchased is only available for 1 wesite only.
|
||||
* If you want to use this file on more websites (or projects), you need to purchase additional licenses.
|
||||
* You are not allowed to redistribute, resell, lease, license, sub-license or offer our resources to any third party.
|
||||
*
|
||||
* 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 contact us for extra customization service at an affordable price
|
||||
*
|
||||
* @author ETS-Soft <etssoft.jsc@gmail.com>
|
||||
* @copyright 2007-2021 ETS-Soft
|
||||
* @license Valid for 1 website (or project) for each purchase of license
|
||||
* International Registered Trademark & Property of ETS-Soft
|
||||
*/
|
||||
|
||||
if (!defined('_PS_VERSION_'))
|
||||
exit;
|
||||
class MM_Column extends MM_Obj
|
||||
{
|
||||
public $id_column;
|
||||
public $id_menu;
|
||||
public $id_tab;
|
||||
public $column_size;
|
||||
public $sort_order;
|
||||
public $is_breaker;
|
||||
public static $definition = array(
|
||||
'table' => 'ets_mm_column',
|
||||
'primary' => 'id_column',
|
||||
'multilang' => false,
|
||||
'fields' => array(
|
||||
'id_menu' => array('type' => self::TYPE_INT),
|
||||
'id_tab' => array('type' => self::TYPE_INT),
|
||||
'column_size' => array('type' => self::TYPE_STRING),
|
||||
'sort_order' => array('type' => self::TYPE_INT),
|
||||
'is_breaker' => array('type' => self::TYPE_INT),
|
||||
)
|
||||
);
|
||||
public function __construct($id_item = null, $id_lang = null, $id_shop = null, Context $context = null)
|
||||
{
|
||||
parent::__construct($id_item, $id_lang, $id_shop);
|
||||
$languages = Language::getLanguages(false);
|
||||
foreach($languages as $lang)
|
||||
{
|
||||
foreach(self::$definition['fields'] as $field => $params)
|
||||
{
|
||||
$temp = $this->$field;
|
||||
if(isset($params['lang']) && $params['lang'] && !isset($temp[$lang['id_lang']]))
|
||||
{
|
||||
$temp[$lang['id_lang']] = '';
|
||||
}
|
||||
$this->$field = $temp;
|
||||
}
|
||||
}
|
||||
unset($context);
|
||||
$this->setFields(Ets_megamenu::$columns);
|
||||
}
|
||||
}
|
||||
331
modules/ets_megamenu/classes/MM_Config.php
Normal file
@@ -0,0 +1,331 @@
|
||||
<?php
|
||||
/**
|
||||
* 2007-2021 ETS-Soft
|
||||
*
|
||||
* NOTICE OF LICENSE
|
||||
*
|
||||
* This file is not open source! Each license that you purchased is only available for 1 wesite only.
|
||||
* If you want to use this file on more websites (or projects), you need to purchase additional licenses.
|
||||
* You are not allowed to redistribute, resell, lease, license, sub-license or offer our resources to any third party.
|
||||
*
|
||||
* 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 contact us for extra customization service at an affordable price
|
||||
*
|
||||
* @author ETS-Soft <etssoft.jsc@gmail.com>
|
||||
* @copyright 2007-2021 ETS-Soft
|
||||
* @license Valid for 1 website (or project) for each purchase of license
|
||||
* International Registered Trademark & Property of ETS-Soft
|
||||
*/
|
||||
|
||||
if (!defined('_PS_VERSION_'))
|
||||
exit;
|
||||
class MM_Config
|
||||
{
|
||||
public $fields;
|
||||
|
||||
public function setFields($fields)
|
||||
{
|
||||
$this->fields = $fields;
|
||||
}
|
||||
public function __construct()
|
||||
{
|
||||
$this->context=Context::getContext();
|
||||
$this->setFields(Ets_megamenu::$configs);
|
||||
}
|
||||
public function renderForm()
|
||||
{
|
||||
$helper = new HelperForm();
|
||||
$helper->module = new Ets_megamenu();
|
||||
$configs = $this->fields['configs'];
|
||||
$fields_form = array();
|
||||
$fields_form['form'] = $this->fields['form'];
|
||||
if($configs)
|
||||
{
|
||||
foreach($configs as $key => $config)
|
||||
{
|
||||
$confFields = array(
|
||||
'name' => $key,
|
||||
'type' => $config['type'],
|
||||
'label' => $config['label'],
|
||||
'desc' => isset($config['desc']) ? $config['desc'] : false,
|
||||
'required' => isset($config['required']) && $config['required'] ? true : false,
|
||||
'autoload_rte' => isset($config['autoload_rte']) && $config['autoload_rte'] ? true : false,
|
||||
'options' => isset($config['options']) && $config['options'] ? $config['options'] : array(),
|
||||
'suffix' => isset($config['suffix']) && $config['suffix'] ? $config['suffix'] : false,
|
||||
'values' => isset($config['values']) ? $config['values'] : false,
|
||||
'lang' => isset($config['lang']) ? $config['lang'] : false,
|
||||
'class' => isset($config['class']) ? $config['class'] : '',
|
||||
'form_group_class' => isset($config['form_group_class']) ? $config['form_group_class'] : '',
|
||||
'hide_delete' => isset($config['hide_delete']) ? $config['hide_delete'] : false,
|
||||
'display_img' => isset($config['type']) && $config['type']=='file' && Configuration::get($key)!='' && @file_exists(dirname(__FILE__).'/../views/img/upload/'.Configuration::get($key)) ? $helper->module->modulePath().'views/img/upload/'.Configuration::get($key) : false,
|
||||
'img_del_link' => isset($config['type']) && $config['type']=='file' && Configuration::get($key)!='' && @file_exists(dirname(__FILE__).'/../views/img/upload/'.Configuration::get($key)) ? $helper->module->baseAdminUrl().'&deleteimage='.$key.'&itemId=0&mm_object=MM_'.Tools::ucfirst($fields_form['form']['name']) : false,
|
||||
);
|
||||
if(isset($config['tree']) && $config['tree'])
|
||||
{
|
||||
$confFields['tree'] = $config['tree'];
|
||||
if(isset($config['tree']['use_checkbox']) && $config['tree']['use_checkbox'])
|
||||
$confFields['tree']['selected_categories'] = explode(',',Configuration::get($key));
|
||||
else
|
||||
$confFields['tree']['selected_categories'] = array(Configuration::get($key));
|
||||
}
|
||||
if(!$confFields['suffix'])
|
||||
unset($confFields['suffix']);
|
||||
$fields_form['form']['input'][] = $confFields;
|
||||
}
|
||||
}
|
||||
|
||||
$helper->show_toolbar = false;
|
||||
$helper->table = false;
|
||||
$lang = new Language((int)Configuration::get('PS_LANG_DEFAULT'));
|
||||
$helper->default_form_language = $lang->id;
|
||||
$helper->allow_employee_form_lang = Configuration::get('PS_BO_ALLOW_EMPLOYEE_FORM_LANG') ? Configuration::get('PS_BO_ALLOW_EMPLOYEE_FORM_LANG') : 0;
|
||||
$this->fields_form = array();
|
||||
$helper->identifier = 'mm_form_'.$this->fields['form']['name'];
|
||||
$helper->submit_action = 'save_'.$this->fields['form']['name'];
|
||||
$link = new Link();
|
||||
$helper->currentIndex = $link->getAdminLink('AdminModules', true).'&configure=ets_megamenu';
|
||||
$helper->token = Tools::getAdminTokenLite('AdminModules');
|
||||
$language = new Language((int)Configuration::get('PS_LANG_DEFAULT'));
|
||||
$fields = array();
|
||||
$languages = Language::getLanguages(false);
|
||||
$helper->override_folder = '/';
|
||||
if(Tools::isSubmit('save_'.$this->fields['form']['name']))
|
||||
{
|
||||
if($configs)
|
||||
{
|
||||
foreach($configs as $key => $config)
|
||||
{
|
||||
if(isset($config['lang']) && $config['lang'])
|
||||
{
|
||||
foreach($languages as $l)
|
||||
{
|
||||
$fields[$key][$l['id_lang']] = Tools::getValue($key.'_'.$l['id_lang'],isset($config['default']) ? $config['default'] : '');
|
||||
}
|
||||
}
|
||||
else
|
||||
$fields[$key] = Tools::getValue($key,isset($config['default']) ? $config['default'] : '');
|
||||
}
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
if($configs)
|
||||
{
|
||||
foreach($configs as $key => $config)
|
||||
{
|
||||
if(isset($config['lang']) && $config['lang'])
|
||||
{
|
||||
foreach($languages as $l)
|
||||
{
|
||||
$fields[$key][$l['id_lang']] = Configuration::get($key,$l['id_lang']);
|
||||
}
|
||||
}
|
||||
else
|
||||
$fields[$key] = Configuration::get($key);
|
||||
}
|
||||
}
|
||||
}
|
||||
$helper->tpl_vars = array(
|
||||
'base_url' => Context::getContext()->shop->getBaseURL(),
|
||||
'language' => array(
|
||||
'id_lang' => $language->id,
|
||||
'iso_code' => $language->iso_code
|
||||
),
|
||||
'fields_value' => $fields,
|
||||
'languages' => Context::getContext()->controller->getLanguages(),
|
||||
'id_language' => Context::getContext()->language->id,
|
||||
'mm_object' => 'MM_'.Tools::ucfirst($fields_form['form']['name']),
|
||||
'image_baseurl' => $helper->module->modulePath().'views/img/',
|
||||
'mm_clear_cache_url' => $helper->module->baseAdminUrl(),
|
||||
'reset_default' => true,
|
||||
);
|
||||
return str_replace(array('id="ets_mm_menu_form"','id="fieldset_0"'),'',$helper->generateForm(array($fields_form)));
|
||||
}
|
||||
public function saveData()
|
||||
{
|
||||
$errors = array();
|
||||
$success = array();
|
||||
$languages = Language::getLanguages(false);
|
||||
$id_lang_default = (int)Configuration::get('PS_LANG_DEFAULT');
|
||||
$configs = $this->fields['configs'];
|
||||
if($configs)
|
||||
{
|
||||
foreach($configs as $key => $config)
|
||||
{
|
||||
if(isset($config['lang']) && $config['lang'])
|
||||
{
|
||||
if(isset($config['required']) && $config['required'] && $config['type']!='switch' && trim(Tools::getValue($key.'_'.$id_lang_default) == ''))
|
||||
{
|
||||
$errors[] = $config['label'].' '.Ets_megamenu::$trans['required_text'];
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
if(isset($config['required']) && $config['required'] && isset($config['type']) && $config['type']=='file')
|
||||
{
|
||||
if(Configuration::get($key)=='' && (!isset($_FILES[$key]['size']) || isset($_FILES[$key]['size']) && !$_FILES[$key]['size']))
|
||||
$errors[] = $config['label'].' '.Ets_megamenu::$trans['required_text'];
|
||||
elseif(isset($_FILES[$key]['size']))
|
||||
{
|
||||
$fileSize = round((int)$_FILES[$key]['size'] / (1024 * 1024));
|
||||
if($fileSize > 100)
|
||||
$errors[] = $config['label'].' '.Ets_megamenu::$trans['file_too_large'];
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
if(isset($config['required']) && $config['required'] && $config['type']!='switch' && trim(Tools::getValue($key) == ''))
|
||||
{
|
||||
$errors[] = $config['label'].' '.Ets_megamenu::$trans['required_text'];
|
||||
}
|
||||
elseif(!is_array(Tools::getValue($key)) && isset($config['validate']) && method_exists('Validate',$config['validate']))
|
||||
{
|
||||
$validate = $config['validate'];
|
||||
if(trim(Tools::getValue($key)) && !Validate::$validate(trim(Tools::getValue($key))))
|
||||
$errors[] = $config['label'].' '.Ets_megamenu::$trans['invalid_text'];
|
||||
unset($validate);
|
||||
}
|
||||
elseif(!Validate::isCleanHtml(trim(Tools::getValue($key))))
|
||||
{
|
||||
$errors[] = $config['label'].' '.Ets_megamenu::$trans['required_text'];
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
if(!$errors)
|
||||
{
|
||||
if($configs)
|
||||
{
|
||||
foreach($configs as $key => $config)
|
||||
{
|
||||
if(isset($config['lang']) && $config['lang'])
|
||||
{
|
||||
$valules = array();
|
||||
foreach($languages as $lang)
|
||||
{
|
||||
if($config['type']=='switch')
|
||||
$valules[$lang['id_lang']] = (int)trim(Tools::getValue($key.'_'.$lang['id_lang'])) ? 1 : 0;
|
||||
else
|
||||
$valules[$lang['id_lang']] = trim(Tools::getValue($key.'_'.$lang['id_lang'])) ? trim(Tools::getValue($key.'_'.$lang['id_lang'])) : trim(Tools::getValue($key.'_'.$id_lang_default));
|
||||
}
|
||||
Configuration::updateValue($key,$valules,true);
|
||||
}
|
||||
elseif($config['type']=='switch')
|
||||
{
|
||||
Configuration::updateValue($key,(int)Tools::getValue($key) ? 1 : 0);
|
||||
}
|
||||
elseif($config['type']=='file')
|
||||
{
|
||||
//Upload file
|
||||
if(isset($_FILES[$key]['tmp_name']) && isset($_FILES[$key]['name']) && $_FILES[$key]['name'])
|
||||
{
|
||||
$salt = Tools::substr(sha1(microtime()),0,10);
|
||||
$type = Tools::strtolower(Tools::substr(strrchr($_FILES[$key]['name'], '.'), 1));
|
||||
$imageName = @file_exists(dirname(__FILE__).'/../views/img/upload/'.Tools::strtolower($_FILES[$key]['name'])) ? $salt.'-'.Tools::strtolower($_FILES[$key]['name']) : Tools::strtolower($_FILES[$key]['name']);
|
||||
$fileName = dirname(__FILE__).'/../views/img/upload/'.$imageName;
|
||||
if(file_exists($fileName))
|
||||
{
|
||||
$errors[] = $config['label'].' '.Ets_megamenu::$trans['file_existed'];
|
||||
}
|
||||
else
|
||||
{
|
||||
$imagesize = @getimagesize($_FILES[$key]['tmp_name']);
|
||||
if (!$errors && isset($_FILES[$key]) &&
|
||||
!empty($_FILES[$key]['tmp_name']) &&
|
||||
!empty($imagesize) &&
|
||||
in_array($type, array('jpg', 'gif', 'jpeg', 'png'))
|
||||
)
|
||||
{
|
||||
$temp_name = tempnam(_PS_TMP_IMG_DIR_, 'PS');
|
||||
if ($error = ImageManager::validateUpload($_FILES[$key]))
|
||||
$errors[] = $error;
|
||||
elseif (!$temp_name || !move_uploaded_file($_FILES[$key]['tmp_name'], $temp_name))
|
||||
$errors[] = Ets_megamenu::$trans['can_not_upload'];
|
||||
elseif (!ImageManager::resize($temp_name, $fileName, null, null, $type))
|
||||
$errors[] = Ets_megamenu::$trans['upload_error_occurred'];
|
||||
if (isset($temp_name))
|
||||
@unlink($temp_name);
|
||||
if(!$errors)
|
||||
{
|
||||
if(Configuration::get($key)!='')
|
||||
{
|
||||
$oldImage = dirname(__FILE__).'/../views/img/upload/'.Configuration::get($key);
|
||||
if(file_exists($oldImage))
|
||||
@unlink($oldImage);
|
||||
}
|
||||
Configuration::updateValue($key,$imageName);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
//End upload file
|
||||
}
|
||||
elseif($config['type']=='categories' && isset($config['tree']['use_checkbox']) && $config['tree']['use_checkbox'] || $config['type']=='checkbox')
|
||||
Configuration::updateValue($key,implode(',',Tools::getValue($key)));
|
||||
else
|
||||
Configuration::updateValue($key,(Tools::getValue($key)));
|
||||
}
|
||||
}
|
||||
}
|
||||
if(!$errors)
|
||||
{
|
||||
$success[] = Ets_megamenu::$trans['data_saved'];
|
||||
if(Configuration::get('ETS_MM_CACHE_ENABLED')) Ets_megamenu::clearAllCache();
|
||||
}
|
||||
return array('errors' => $errors, 'success' => $success);
|
||||
}
|
||||
public function getConfig()
|
||||
{
|
||||
$configs = $this->fields['configs'];
|
||||
$data = array();
|
||||
if($configs)
|
||||
foreach($configs as $key => $config)
|
||||
{
|
||||
$data[$key] = isset($config['lang']) && $config['lang'] ? Configuration::get($key,$this->context->language->id) : Configuration::get($key);
|
||||
}
|
||||
return $data;
|
||||
}
|
||||
public function installConfigs($upgrade = false)
|
||||
{
|
||||
$configs = $this->fields['configs'];
|
||||
$languages = Language::getLanguages(false);
|
||||
if($configs)
|
||||
{
|
||||
foreach($configs as $key => $config)
|
||||
{
|
||||
if(isset($config['lang']) && $config['lang'])
|
||||
{
|
||||
$values = array();
|
||||
foreach($languages as $lang)
|
||||
{
|
||||
$values[$lang['id_lang']] = isset($config['default']) ? $config['default'] : '';
|
||||
}
|
||||
if ($upgrade && !Configuration::hasKey($key) || !$upgrade)
|
||||
{
|
||||
Configuration::updateValue($key, $values, true);
|
||||
}
|
||||
}
|
||||
elseif ($upgrade && !Configuration::hasKey($key) || !$upgrade)
|
||||
{
|
||||
Configuration::updateValue($key, isset($config['default']) ? $config['default'] : '',true);
|
||||
}
|
||||
}
|
||||
}
|
||||
return true;
|
||||
}
|
||||
public function unInstallConfigs()
|
||||
{
|
||||
if($this->fields['configs'])
|
||||
{
|
||||
foreach($this->fields['configs'] as $key => $config)
|
||||
{
|
||||
Configuration::deleteByName($key);
|
||||
unset($config);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
126
modules/ets_megamenu/classes/MM_Menu.php
Normal file
@@ -0,0 +1,126 @@
|
||||
<?php
|
||||
/**
|
||||
* 2007-2021 ETS-Soft
|
||||
*
|
||||
* NOTICE OF LICENSE
|
||||
*
|
||||
* This file is not open source! Each license that you purchased is only available for 1 wesite only.
|
||||
* If you want to use this file on more websites (or projects), you need to purchase additional licenses.
|
||||
* You are not allowed to redistribute, resell, lease, license, sub-license or offer our resources to any third party.
|
||||
*
|
||||
* 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 contact us for extra customization service at an affordable price
|
||||
*
|
||||
* @author ETS-Soft <etssoft.jsc@gmail.com>
|
||||
* @copyright 2007-2021 ETS-Soft
|
||||
* @license Valid for 1 website (or project) for each purchase of license
|
||||
* International Registered Trademark & Property of ETS-Soft
|
||||
*/
|
||||
|
||||
if (!defined('_PS_VERSION_'))
|
||||
exit;
|
||||
class MM_Menu extends MM_Obj
|
||||
{
|
||||
public $id_menu;
|
||||
public $title;
|
||||
public $link;
|
||||
public $enabled;
|
||||
public $menu_open_new_tab;
|
||||
public $menu_ver_hidden_border;
|
||||
public $menu_ver_alway_show;
|
||||
public $menu_ver_alway_open_first;
|
||||
public $sort_order;
|
||||
public $id_category;
|
||||
public $id_manufacturer;
|
||||
public $id_supplier;
|
||||
public $id_cms;
|
||||
public $link_type;
|
||||
public $sub_menu_type;
|
||||
public $sub_menu_max_width;
|
||||
public $custom_class;
|
||||
public $menu_icon;
|
||||
public $menu_img_link;
|
||||
public $bubble_text;
|
||||
public $bubble_text_color;
|
||||
public $bubble_background_color;
|
||||
public $menu_ver_text_color;
|
||||
public $menu_ver_background_color;
|
||||
public $enabled_vertical;
|
||||
public $menu_item_width;
|
||||
public $tab_item_width;
|
||||
public $background_image;
|
||||
public $position_background;
|
||||
public $display_tabs_in_full_width;
|
||||
public static $definition = array(
|
||||
'table' => 'ets_mm_menu',
|
||||
'primary' => 'id_menu',
|
||||
'multilang' => true,
|
||||
'fields' => array(
|
||||
'sort_order' => array('type' => self::TYPE_INT),
|
||||
'id_category' => array('type' => self::TYPE_INT),
|
||||
'id_manufacturer' => array('type' => self::TYPE_INT),
|
||||
'id_supplier'=>array('type'=>self::TYPE_INT),
|
||||
'id_cms' => array('type' => self::TYPE_INT),
|
||||
'sub_menu_type' => array('type' => self::TYPE_STRING),
|
||||
'link_type' => array('type' => self::TYPE_STRING),
|
||||
'sub_menu_max_width' => array('type' => self::TYPE_STRING),
|
||||
'custom_class' => array('type' => self::TYPE_STRING),
|
||||
'bubble_text_color' => array('type' => self::TYPE_STRING),
|
||||
'bubble_background_color' => array('type' => self::TYPE_STRING),
|
||||
'menu_ver_text_color' => array('type' => self::TYPE_STRING),
|
||||
'menu_item_width' => array('type' => self::TYPE_STRING),
|
||||
'tab_item_width'=> array('type'=>self::TYPE_STRING),
|
||||
'menu_ver_background_color' => array('type' => self::TYPE_STRING),
|
||||
'menu_ver_hidden_border'=>array('type'=>self::TYPE_INT),
|
||||
'menu_ver_alway_show'=>array('type'=>self::TYPE_INT),
|
||||
'menu_ver_alway_open_first'=>array('type'=>self::TYPE_INT),
|
||||
'enabled' => array('type' => self::TYPE_INT),
|
||||
'menu_open_new_tab' => array('type' => self::TYPE_INT),
|
||||
'menu_icon' => array('type' => self::TYPE_STRING, 'lang' => false, 'validate' => 'isCleanHtml'),
|
||||
'menu_img_link' => array('type' => self::TYPE_STRING, 'lang' => false),
|
||||
'enabled_vertical' => array('type'=>self::TYPE_INT),
|
||||
'background_image' => array('type' => self::TYPE_STRING),
|
||||
'position_background' => array('type' => self::TYPE_STRING),
|
||||
'display_tabs_in_full_width'=> array('type' => self::TYPE_INT),
|
||||
// Lang fields
|
||||
'title' => array('type' => self::TYPE_STRING, 'lang' => true, 'validate' => 'isCleanHtml', 'required' => true),
|
||||
'link' => array('type' => self::TYPE_STRING, 'lang' => true, 'validate' => 'isCleanHtml'),
|
||||
'bubble_text' => array('type' => self::TYPE_STRING, 'lang' => true, 'validate' => 'isCleanHtml'),
|
||||
)
|
||||
);
|
||||
public function __construct($id_item = null, $id_lang = null, $id_shop = null, Context $context = null)
|
||||
{
|
||||
|
||||
parent::__construct($id_item, $id_lang, $id_shop);
|
||||
$languages = Language::getLanguages(false);
|
||||
foreach($languages as $lang)
|
||||
{
|
||||
foreach(self::$definition['fields'] as $field => $params)
|
||||
{
|
||||
$temp = $this->$field;
|
||||
if(isset($params['lang']) && $params['lang'] && !isset($temp[$lang['id_lang']]))
|
||||
{
|
||||
$temp[$lang['id_lang']] = '';
|
||||
}
|
||||
$this->$field = $temp;
|
||||
}
|
||||
}
|
||||
$this->context = $context;
|
||||
$this->setFields(Ets_megamenu::$menus);
|
||||
}
|
||||
public function add($autodate = true, $null_values = false, $id_shop = null)
|
||||
{
|
||||
$context = Context::getContext();
|
||||
if (!$id_shop)
|
||||
$id_shop = $context->shop->id;
|
||||
$res = parent::add($autodate, $null_values);
|
||||
$res &= Db::getInstance()->execute('
|
||||
INSERT INTO `'._DB_PREFIX_.'ets_mm_menu_shop` (`id_shop`, `id_menu`)
|
||||
VALUES('.(int)$id_shop.', '.(int)$this->id.')'
|
||||
);
|
||||
return $res;
|
||||
}
|
||||
}
|
||||
710
modules/ets_megamenu/classes/MM_Obj.php
Normal file
@@ -0,0 +1,710 @@
|
||||
<?php
|
||||
/**
|
||||
* 2007-2021 ETS-Soft
|
||||
*
|
||||
* NOTICE OF LICENSE
|
||||
*
|
||||
* This file is not open source! Each license that you purchased is only available for 1 wesite only.
|
||||
* If you want to use this file on more websites (or projects), you need to purchase additional licenses.
|
||||
* You are not allowed to redistribute, resell, lease, license, sub-license or offer our resources to any third party.
|
||||
*
|
||||
* 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 contact us for extra customization service at an affordable price
|
||||
*
|
||||
* @author ETS-Soft <etssoft.jsc@gmail.com>
|
||||
* @copyright 2007-2021 ETS-Soft
|
||||
* @license Valid for 1 website (or project) for each purchase of license
|
||||
* International Registered Trademark & Property of ETS-Soft
|
||||
*/
|
||||
|
||||
if (!defined('_PS_VERSION_'))
|
||||
exit;
|
||||
class MM_Obj extends ObjectModel
|
||||
{
|
||||
public $fields;
|
||||
|
||||
public function setFields($fields)
|
||||
{
|
||||
$this->fields = $fields;
|
||||
}
|
||||
public function renderForm()
|
||||
{
|
||||
$helper = new HelperForm();
|
||||
$helper->module = new Ets_megamenu();
|
||||
$configs = $this->fields['configs'];
|
||||
$fields_form = array();
|
||||
$fields_form['form'] = $this->fields['form'];
|
||||
if($configs)
|
||||
{
|
||||
foreach($configs as $key => $config)
|
||||
{
|
||||
if(isset($config['type']) && in_array($config['type'],array('sort_order')))
|
||||
continue;
|
||||
$confFields = array(
|
||||
'name' => $key,
|
||||
'type' => $config['type'],
|
||||
'class'=>isset($config['class'])?$config['class']:'',
|
||||
'label' => $config['label'],
|
||||
'desc' => isset($config['desc']) ? $config['desc'] : false,
|
||||
'required' => isset($config['required']) && $config['required'] ? true : false,
|
||||
'autoload_rte' => isset($config['autoload_rte']) && $config['autoload_rte'] ? true : false,
|
||||
'options' => isset($config['options']) && $config['options'] ? $config['options'] : array(),
|
||||
'suffix' => isset($config['suffix']) && $config['suffix'] ? $config['suffix'] : false,
|
||||
'values' => isset($config['values']) ? $config['values'] : false,
|
||||
'lang' => isset($config['lang']) ? $config['lang'] : false,
|
||||
'showRequired' => isset($config['showRequired']) && $config['showRequired'],
|
||||
'hide_delete' => isset($config['hide_delete']) ? $config['hide_delete'] : false,
|
||||
'placeholder' => isset($config['placeholder']) ? $config['placeholder'] : false,
|
||||
'display_img' => $this->id && isset($config['type']) && $config['type']=='file' && $this->$key!='' && @file_exists(dirname(__FILE__).'/../views/img/upload/'.$this->$key) ? $helper->module->modulePath().'views/img/upload/'.$this->$key : false,
|
||||
'img_del_link' => $this->id && isset($config['type']) && $config['type']=='file' && $this->$key!='' && @file_exists(dirname(__FILE__).'/../views/img/upload/'.$this->$key) ? $helper->module->baseAdminUrl().'&deleteimage='.$key.'&itemId='.(isset($this->id)?$this->id:'0').'&mm_object=MM_'.Tools::ucfirst($fields_form['form']['name']) : false,
|
||||
);
|
||||
if(isset($config['tree']) && $config['tree'])
|
||||
{
|
||||
$confFields['tree'] = $config['tree'];
|
||||
if(isset($config['tree']['use_checkbox']) && $config['tree']['use_checkbox'])
|
||||
$confFields['tree']['selected_categories'] = explode(',',$this->$key);
|
||||
else
|
||||
$confFields['tree']['selected_categories'] = array($this->$key);
|
||||
}
|
||||
if(!$confFields['suffix'])
|
||||
unset($confFields['suffix']);
|
||||
$fields_form['form']['input'][] = $confFields;
|
||||
}
|
||||
}
|
||||
|
||||
$helper->show_toolbar = false;
|
||||
$helper->table = $this->table;
|
||||
$lang = new Language((int)Configuration::get('PS_LANG_DEFAULT'));
|
||||
$helper->default_form_language = $lang->id;
|
||||
$helper->allow_employee_form_lang = Configuration::get('PS_BO_ALLOW_EMPLOYEE_FORM_LANG') ? Configuration::get('PS_BO_ALLOW_EMPLOYEE_FORM_LANG') : 0;
|
||||
$this->fields_form = array();
|
||||
$helper->identifier = $this->identifier;
|
||||
$helper->submit_action = 'save_'.$this->fields['form']['name'];
|
||||
$link = new Link();
|
||||
$helper->currentIndex = $link->getAdminLink('AdminModules', true).'&configure=ets_megamenu';
|
||||
$language = new Language((int)Configuration::get('PS_LANG_DEFAULT'));
|
||||
$fields = array();
|
||||
$languages = Language::getLanguages(false);
|
||||
$helper->override_folder = '/';
|
||||
if($configs)
|
||||
{
|
||||
foreach($configs as $key => $config)
|
||||
{
|
||||
|
||||
if($config['type']=='checkbox')
|
||||
$fields[$key] = $this->id ? explode(',',$this->$key) : (isset($config['default']) && $config['default'] ? $config['default'] : array());
|
||||
elseif(isset($config['lang']) && $config['lang'])
|
||||
{
|
||||
foreach($languages as $l)
|
||||
{
|
||||
$temp = $this->$key;
|
||||
$fields[$key][$l['id_lang']] = $this->id ? $temp[$l['id_lang']] : (isset($config['default']) && $config['default'] ? $config['default'] : null);
|
||||
}
|
||||
}
|
||||
elseif(!isset($config['tree']))
|
||||
$fields[$key] = $this->id ? $this->$key : (isset($config['default']) && $config['default'] ? $config['default'] : null);
|
||||
}
|
||||
}
|
||||
|
||||
$helper->tpl_vars = array(
|
||||
'base_url' => Context::getContext()->shop->getBaseURL(),
|
||||
'language' => array(
|
||||
'id_lang' => $language->id,
|
||||
'iso_code' => $language->iso_code
|
||||
),
|
||||
'fields_value' => $fields,
|
||||
'languages' => Context::getContext()->controller->getLanguages(),
|
||||
'id_language' => Context::getContext()->language->id,
|
||||
'key_name' => 'id_'.$fields_form['form']['name'],
|
||||
'item_id' => $this->id,
|
||||
'mm_object' => 'MM_'.Tools::ucfirst($fields_form['form']['name']),
|
||||
'list_item' => true,
|
||||
'image_baseurl' => $helper->module->modulePath().'views/img/',
|
||||
);
|
||||
return str_replace(array('id="ets_mm_menu_form"','id="fieldset_0"'),'',$helper->generateForm(array($fields_form)));
|
||||
}
|
||||
public function getFieldVals()
|
||||
{
|
||||
if(!$this->id)
|
||||
return array();
|
||||
$vals = array();
|
||||
foreach($this->fields['configs'] as $key => $config)
|
||||
{
|
||||
if(property_exists($this,$key))
|
||||
{
|
||||
if(isset($config['lang'])&&$config['lang'])
|
||||
{
|
||||
$val_lang= $this->$key;
|
||||
$vals[$key]=$val_lang[Context::getContext()->language->id];
|
||||
|
||||
}
|
||||
else
|
||||
$vals[$key] = $this->$key;
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
$vals['id_'.$this->fields['form']['name']] = (int)$this->id;
|
||||
unset($config);
|
||||
return $vals;
|
||||
}
|
||||
public function clearImage($image)
|
||||
{
|
||||
$configs = $this->fields['configs'];
|
||||
$errors = array();
|
||||
$success = array();
|
||||
if(!$this->id)
|
||||
$errors[] = Ets_megamenu::$trans['object_empty'];
|
||||
elseif(!isset($configs[$image]['type']) || isset($configs[$image]['type']) && $configs[$image]['type']!='file')
|
||||
$errors[] = Ets_megamenu::$trans['field_not_valid'];
|
||||
elseif(isset($configs[$image]) && !isset($configs[$image]['required']) || (isset($configs[$image]['required']) && !$configs[$image]['required']))
|
||||
{
|
||||
$imageName = $this->$image;
|
||||
$imagePath = dirname(__FILE__).'/../views/img/upload/'.$imageName;
|
||||
if($imageName && file_exists($imagePath) && !Ets_megamenu::imageExits($imageName,$this->id))
|
||||
{
|
||||
@unlink($imagePath);
|
||||
$this->$image = '';
|
||||
if($this->update())
|
||||
{
|
||||
$success[] = Ets_megamenu::$trans['image_deleted'];
|
||||
if(Configuration::get('ETS_MM_CACHE_ENABLED'))
|
||||
Ets_megamenu::clearAllCache();
|
||||
}
|
||||
else
|
||||
$errors[] = Ets_megamenu::$trans['unkown_error'];
|
||||
}
|
||||
}
|
||||
else
|
||||
$errors[] = $configs[$image]['label']. Ets_megamenu::$trans['required_text'];
|
||||
return array('errors' => $errors,'success' => $success);
|
||||
}
|
||||
public function deleteObj()
|
||||
{
|
||||
$errors = array();
|
||||
$success = array();
|
||||
$configs = $this->fields['configs'];
|
||||
$parent=isset($this->fields['form']['parent'])?$this->fields['form']['parent']:'1';
|
||||
$images = array();
|
||||
foreach($configs as $key => $config)
|
||||
{
|
||||
if($config['type']=='file' && $this->$key && @file_exists(dirname(__FILE__).'/../views/img/upload/'.$this->$key) && !Ets_megamenu::imageExits($this->$key,$this->id))
|
||||
$images[] = dirname(__FILE__).'/../views/img/upload/'.$this->$key;
|
||||
}
|
||||
if(!$this->delete())
|
||||
$errors[] = Ets_megamenu::$trans['cannot_delete'];
|
||||
else
|
||||
{
|
||||
foreach($images as $image)
|
||||
@unlink($image);
|
||||
$success[] = Ets_megamenu::$trans['item_deleted'];
|
||||
if(Configuration::get('ETS_MM_CACHE_ENABLED'))
|
||||
Ets_megamenu::clearAllCache();
|
||||
if(isset($configs['sort_order']) && $configs['sort_order'])
|
||||
{
|
||||
Db::getInstance()->execute("
|
||||
UPDATE "._DB_PREFIX_."ets_mm_".pSQL($this->fields['form']['name'])."
|
||||
SET sort_order=sort_order-1
|
||||
WHERE sort_order>".(int)$this->sort_order." ".(isset($configs['sort_order']['order_group'][$parent]) && ($orderGroup = $configs['sort_order']['order_group'][$parent]) ? " AND ".pSQL($orderGroup)."=".(int)$this->$orderGroup : "")."
|
||||
");
|
||||
}
|
||||
if($this->id && isset($this->fields['form']['connect_to2']) && $this->fields['form']['connect_to2']
|
||||
&& ($subs = Db::getInstance()->executeS("SELECT id_".pSQL($this->fields['form']['connect_to2'])." FROM "._DB_PREFIX_."ets_mm_".pSQL($this->fields['form']['connect_to2']). " WHERE id_".pSQL($this->fields['form']['name'])."=".(int)$this->id)))
|
||||
{
|
||||
foreach($subs as $sub)
|
||||
{
|
||||
$className = 'MM_'.Tools::ucfirst(Tools::strtolower($this->fields['form']['connect_to2']));
|
||||
if(class_exists($className))
|
||||
{
|
||||
$obj = new $className((int)$sub['id_'.$this->fields['form']['connect_to2']]);
|
||||
$obj->deleteObj();
|
||||
}
|
||||
}
|
||||
}
|
||||
if($this->id && isset($this->fields['form']['connect_to']) && $this->fields['form']['connect_to']
|
||||
&& ($subs = Db::getInstance()->executeS("SELECT id_".pSQL($this->fields['form']['connect_to'])." FROM "._DB_PREFIX_."ets_mm_".pSQL($this->fields['form']['connect_to']). " WHERE id_".pSQL($this->fields['form']['name'])."=".(int)$this->id)))
|
||||
{
|
||||
foreach($subs as $sub)
|
||||
{
|
||||
$className = 'MM_'.Tools::ucfirst(Tools::strtolower($this->fields['form']['connect_to']));
|
||||
if(class_exists($className))
|
||||
{
|
||||
$obj = new $className((int)$sub['id_'.$this->fields['form']['connect_to']]);
|
||||
$obj->deleteObj();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
return array('errors' => $errors,'success' => $success);
|
||||
}
|
||||
public function maxVal($key,$group = false, $groupval=0)
|
||||
{
|
||||
return ($max = Db::getInstance()->getValue("SELECT max(".pSQL($key).") FROM "._DB_PREFIX_."ets_mm_".pSQL($this->fields['form']['name']).($group && ($groupval > 0) ? " WHERE ".pSQL($group)."=".(int)$groupval : ''))) ? (int)$max : 0;
|
||||
}
|
||||
public function updateOrder($previousId = 0, $groupdId = 0,$parentObj='')
|
||||
{
|
||||
$group = isset($this->fields['configs']['sort_order']['order_group'][$parentObj]) && $this->fields['configs']['sort_order']['order_group'][$parentObj] ? $this->fields['configs']['sort_order']['order_group'][$parentObj] : false;
|
||||
if(!$groupdId && $group)
|
||||
$groupdId = $this->$group;
|
||||
$oldOrder = $this->sort_order;
|
||||
if($group && $groupdId && property_exists($this,$group) && $this->$group != $groupdId)
|
||||
{
|
||||
Db::getInstance()->execute("
|
||||
UPDATE "._DB_PREFIX_."ets_mm_".pSQL($this->fields['form']['name'])."
|
||||
SET sort_order=sort_order-1
|
||||
WHERE sort_order>".(int)$this->sort_order." AND id_".pSQL($this->fields['form']['name'])."!=".(int)$this->id."
|
||||
".($group && $groupdId ? " AND ".pSQL($group)."=".(int)$this->$group : ""));
|
||||
$this->$group = $groupdId;
|
||||
if($parentObj=='tab')
|
||||
{
|
||||
$tab= new MM_Tab($groupdId);
|
||||
$this->id_menu = $tab->id_menu;
|
||||
}
|
||||
if($parentObj=='menu')
|
||||
{
|
||||
$this->id_tab=0;
|
||||
}
|
||||
$changeGroup = true;
|
||||
}
|
||||
else
|
||||
$changeGroup = false;
|
||||
if($previousId > 0)
|
||||
{
|
||||
$objName = 'MM_'.Tools::ucfirst($this->fields['form']['name']);
|
||||
$obj = new $objName($previousId);
|
||||
if($obj->sort_order > 0)
|
||||
$this->sort_order = $obj->sort_order+1;
|
||||
else
|
||||
$this->sort_order = 1;
|
||||
}
|
||||
else
|
||||
$this->sort_order = 1;
|
||||
if($this->update())
|
||||
{
|
||||
|
||||
Db::getInstance()->execute("
|
||||
UPDATE "._DB_PREFIX_."ets_mm_".pSQL($this->fields['form']['name'])."
|
||||
SET sort_order=sort_order+1
|
||||
WHERE sort_order>=".(int)$this->sort_order." AND id_".pSQL($this->fields['form']['name'])."!=".(int)$this->id."
|
||||
".($group && $groupdId ? " AND ".pSQL($group)."=".(int)$this->$group : ""));
|
||||
|
||||
if(!$changeGroup && $this->sort_order!=$oldOrder)
|
||||
{
|
||||
|
||||
$rs = Db::getInstance()->execute("
|
||||
UPDATE "._DB_PREFIX_."ets_mm_".pSQL($this->fields['form']['name'])."
|
||||
SET sort_order=sort_order-1
|
||||
WHERE sort_order>".($this->sort_order > $oldOrder ? (int)($oldOrder) : (int)($oldOrder+1)).($group && $groupdId ? " AND ".pSQL($group)."=".(int)$this->$group : ""));
|
||||
if(Configuration::get('ETS_MM_CACHE_ENABLED'))
|
||||
Ets_megamenu::clearAllCache();
|
||||
return $rs;
|
||||
}
|
||||
if(Configuration::get('ETS_MM_CACHE_ENABLED'))
|
||||
Ets_megamenu::clearAllCache();
|
||||
return true;
|
||||
}
|
||||
return false;
|
||||
}
|
||||
public function saveData()
|
||||
{
|
||||
$errors = array();
|
||||
$success = array();
|
||||
$languages = Language::getLanguages(false);
|
||||
$id_lang_default = (int)Configuration::get('PS_LANG_DEFAULT');
|
||||
$parent=isset($this->fields['form']['parent'])?$this->fields['form']['parent']:'1';
|
||||
$configs = $this->fields['configs'];
|
||||
if($configs)
|
||||
{
|
||||
foreach($configs as $key => $config)
|
||||
{
|
||||
if($config['type']=='sort_order')
|
||||
continue;
|
||||
if(isset($config['lang']) && $config['lang'])
|
||||
{
|
||||
if(isset($config['required']) && $config['required'] && $config['type']!='switch' && trim(Tools::getValue($key.'_'.$id_lang_default) == ''))
|
||||
{
|
||||
$errors[] = $config['label'].' '.Ets_megamenu::$trans['required_text'];
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
if(isset($config['required']) && $config['required'] && isset($config['type']) && $config['type']=='file')
|
||||
{
|
||||
if($this->$key=='' && !isset($_FILES[$key]['size']))
|
||||
$errors[] = $config['label'].' '.Ets_megamenu::$trans['required_text'];
|
||||
elseif(isset($_FILES[$key]['size']))
|
||||
{
|
||||
$fileSize = round((int)$_FILES[$key]['size'] / (1024 * 1024));
|
||||
if($fileSize > 100)
|
||||
$errors[] = $config['label'].' '.Ets_megamenu::$trans['file_too_large'];
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
if(isset($config['required']) && $config['required'] && $config['type']!='switch' && trim(Tools::getValue($key) == ''))
|
||||
{
|
||||
$errors[] = $config['label'].' '.Ets_megamenu::$trans['required_text'];
|
||||
}
|
||||
elseif(!is_array(Tools::getValue($key)) && isset($config['validate']) && method_exists('Validate',$config['validate']))
|
||||
{
|
||||
$validate = $config['validate'];
|
||||
if(!Validate::$validate(trim(Tools::getValue($key))))
|
||||
$errors[] = $config['label'].' '.Ets_megamenu::$trans['invalid_text'];
|
||||
unset($validate);
|
||||
}
|
||||
elseif(!Validate::isCleanHtml(trim(Tools::getValue($key))))
|
||||
{
|
||||
$errors[] = $config['label'].' '.Ets_megamenu::$trans['required_text'];
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
//Custom validation
|
||||
if($this->fields['form']['name']=='menu')
|
||||
{
|
||||
switch(Tools::getValue('link_type'))
|
||||
{
|
||||
case 'CUSTOM':
|
||||
if(trim(Tools::getValue('link_'.$id_lang_default))=='')
|
||||
$errors[] = Ets_megamenu::$trans['custom_link_required_text'];
|
||||
break;
|
||||
case 'CMS':
|
||||
if(!(int)Tools::getValue('id_cms'))
|
||||
$errors[] = Ets_megamenu::$trans['cms_required_text'];
|
||||
break;
|
||||
case 'CATEGORY':
|
||||
if(!(int)Tools::getValue('id_category'))
|
||||
$errors[] = Ets_megamenu::$trans['category_required_text'];
|
||||
break;
|
||||
case 'MNFT':
|
||||
if(!(int)Tools::getValue('id_manufacturer'))
|
||||
$errors[] = Ets_megamenu::$trans['manufacturer_required_text'];
|
||||
break;
|
||||
case 'MNSP':
|
||||
if(!(int)Tools::getValue('id_supplier'))
|
||||
$errors[] = Ets_megamenu::$trans['supplier_required_text'];
|
||||
break;
|
||||
case 'CONTACT':
|
||||
break;
|
||||
case 'HOME':
|
||||
break;
|
||||
default:
|
||||
$errors[] = Ets_megamenu::$trans['link_type_not_valid_text'];
|
||||
break;
|
||||
}
|
||||
if(Tools::strlen(Tools::getValue('sub_menu_max_width'))<1 || Tools::strlen(Tools::getValue('sub_menu_max_width')) > 50)
|
||||
$errors[] = Ets_megamenu::$trans['sub_menu_width_invalid'].'2';
|
||||
foreach($languages as $lang)
|
||||
{
|
||||
if($bubble_text = Tools::getValue('bubble_text_'.$lang['id_lang']))
|
||||
{
|
||||
if(Tools::strlen($bubble_text) > 50)
|
||||
{
|
||||
$errors[] = Ets_megamenu::$trans['bubble_text_is_too_long'];
|
||||
}
|
||||
$bubble_text_entered = true;
|
||||
}
|
||||
|
||||
}
|
||||
if(isset($bubble_text_entered) && $bubble_text_entered)
|
||||
{
|
||||
if(!Tools::getValue('bubble_text_color'))
|
||||
$errors[] = Ets_megamenu::$trans['bubble_text_color_is_required'];
|
||||
if(!Tools::getValue('bubble_background_color'))
|
||||
$errors[] = Ets_megamenu::$trans['bubble_background_color_is_required'];
|
||||
}
|
||||
|
||||
}
|
||||
if($this->fields['form']['name']=='block')
|
||||
{
|
||||
switch(Tools::getValue('block_type'))
|
||||
{
|
||||
case 'HTML':
|
||||
if(trim(Tools::getValue('content_'.$id_lang_default))=='')
|
||||
$errors[] = Ets_megamenu::$trans['content_required_text'];
|
||||
break;
|
||||
case 'CMS':
|
||||
if(!Tools::getValue('id_cmss'))
|
||||
$errors[] = Ets_megamenu::$trans['cmss_required_text'];
|
||||
break;
|
||||
case 'CATEGORY':
|
||||
if(!Tools::getValue('id_categories'))
|
||||
$errors[] = Ets_megamenu::$trans['categories_required_text'];
|
||||
break;
|
||||
case 'MNFT':
|
||||
if(!Tools::getValue('id_manufacturers'))
|
||||
$errors[] = Ets_megamenu::$trans['manufacturers_required_text'];
|
||||
break;
|
||||
case 'MNSP':
|
||||
if(!Tools::getValue('id_suppliers'))
|
||||
$errors[] = Ets_megamenu::$trans['suppliers_required_text'];
|
||||
break;
|
||||
case 'PRODUCT':
|
||||
if (Tools::getValue('product_type', false) == 'specific')
|
||||
{
|
||||
if(!Tools::getValue('id_products', false))
|
||||
$errors[] = Ets_megamenu::$trans['products_required_text'];
|
||||
}
|
||||
else
|
||||
{
|
||||
if(!Tools::getValue('product_count', false))
|
||||
$errors[] = Ets_megamenu::$trans['product_count_required_text'];
|
||||
elseif(!Validate::isUnsignedId(Tools::getValue('product_count')))
|
||||
$errors[] = Ets_megamenu::$trans['product_count_not_valid_text'];
|
||||
}
|
||||
break;
|
||||
case 'IMAGE':
|
||||
if($this->image=='' && (!isset($_FILES['image']['size']) || isset($_FILES['image']['size']) && !$_FILES['image']['size']))
|
||||
$errors[] = Ets_megamenu::$trans['image_required_text'];
|
||||
break;
|
||||
default:
|
||||
$errors[] = Ets_megamenu::$trans['block_type_not_valid_text'];
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
if(!$errors)
|
||||
{
|
||||
if($configs)
|
||||
{
|
||||
foreach($configs as $key => $config)
|
||||
{
|
||||
if(isset($config['type']) && $config['type']=='sort_order')
|
||||
{
|
||||
if(!$this->id)
|
||||
{
|
||||
if(!isset($config['order_group'][$parent]) || isset($config['order_group'][$parent]) && !$config['order_group'][$parent])
|
||||
$this->$key = $this->maxVal($key)+1;
|
||||
else
|
||||
{
|
||||
$orderGroup = $config['order_group'][$parent];
|
||||
$this->$key = $this->maxVal($key,$orderGroup,(int)$this->$orderGroup)+1;
|
||||
}
|
||||
}
|
||||
}
|
||||
elseif(isset($config['lang']) && $config['lang'])
|
||||
{
|
||||
$valules = array();
|
||||
foreach($languages as $lang)
|
||||
{
|
||||
if($config['type']=='switch')
|
||||
$valules[$lang['id_lang']] = (int)trim(Tools::getValue($key.'_'.$lang['id_lang'])) ? 1 : 0;
|
||||
else
|
||||
$valules[$lang['id_lang']] = trim(Tools::getValue($key.'_'.$lang['id_lang'])) ? trim(Tools::getValue($key.'_'.$lang['id_lang'])) : trim(Tools::getValue($key.'_'.$id_lang_default));
|
||||
}
|
||||
$this->$key = $valules;
|
||||
}
|
||||
elseif($config['type']=='switch')
|
||||
{
|
||||
$this->$key = (int)Tools::getValue($key) ? 1 : 0;
|
||||
}
|
||||
elseif($config['type']=='file')
|
||||
{
|
||||
//Upload file
|
||||
if(isset($_FILES[$key]['tmp_name']) && isset($_FILES[$key]['name']) && $_FILES[$key]['name'])
|
||||
{
|
||||
$salt = Tools::substr(sha1(microtime()),0,10);
|
||||
$type = Tools::strtolower(Tools::substr(strrchr($_FILES[$key]['name'], '.'), 1));
|
||||
$imageName = @file_exists(dirname(__FILE__).'/../views/img/upload/'.Tools::strtolower($_FILES[$key]['name']))|| Tools::strtolower($_FILES[$key]['name'])==$this->$key ? $salt.'-'.Tools::strtolower($_FILES[$key]['name']) : Tools::strtolower($_FILES[$key]['name']);
|
||||
$fileName = dirname(__FILE__).'/../views/img/upload/'.$imageName;
|
||||
if(file_exists($fileName))
|
||||
{
|
||||
$errors[] = $config['label'].' '.Ets_megamenu::$trans['file_existed'];
|
||||
}
|
||||
else
|
||||
{
|
||||
$imagesize = @getimagesize($_FILES[$key]['tmp_name']);
|
||||
if (!$errors && isset($_FILES[$key]) &&
|
||||
!empty($_FILES[$key]['tmp_name']) &&
|
||||
!empty($imagesize) &&
|
||||
in_array($type, array('jpg', 'gif', 'jpeg', 'png'))
|
||||
)
|
||||
{
|
||||
$temp_name = tempnam(_PS_TMP_IMG_DIR_, 'PS');
|
||||
if ($error = ImageManager::validateUpload($_FILES[$key]))
|
||||
$errors[] = $error;
|
||||
elseif (!$temp_name || !move_uploaded_file($_FILES[$key]['tmp_name'], $temp_name))
|
||||
$errors[] = Ets_megamenu::$trans['can_not_upload'];
|
||||
elseif (!ImageManager::resize($temp_name, $fileName, null, null, $type))
|
||||
$errors[] = Ets_megamenu::$trans['upload_error_occurred'];
|
||||
if (isset($temp_name))
|
||||
@unlink($temp_name);
|
||||
if(!$errors)
|
||||
{
|
||||
if($this->$key!='')
|
||||
{
|
||||
$oldImage = dirname(__FILE__).'/../views/img/upload/'.$this->$key;
|
||||
if(file_exists($oldImage) && !Ets_megamenu::imageExits($this->$key,$this->id))
|
||||
@unlink($oldImage);
|
||||
}
|
||||
$this->$key = $imageName;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
//End upload file
|
||||
}
|
||||
elseif($config['type']=='categories' && isset($config['tree']['use_checkbox']) && $config['tree']['use_checkbox'] || $config['type']=='checkbox')
|
||||
$this->$key = implode(',',Tools::getValue($key));
|
||||
else
|
||||
$this->$key = trim(Tools::getValue($key));
|
||||
}
|
||||
}
|
||||
}
|
||||
if (!count($errors))
|
||||
{
|
||||
if($this->id && $this->update() || !$this->id && $this->add())
|
||||
{
|
||||
if(Configuration::get('ETS_MM_CACHE_ENABLED'))
|
||||
Ets_megamenu::clearAllCache();
|
||||
$success[] = Ets_megamenu::$trans['data_saved'];
|
||||
}
|
||||
else
|
||||
$errors[] = Ets_megamenu::$trans['unkown_error'];
|
||||
}
|
||||
return array('errors' => $errors, 'success' => $success);
|
||||
}
|
||||
public function duplicateItem($id_parent = false,$id_parent2=false)
|
||||
{
|
||||
$oldId = $this->id;
|
||||
$this->id = null;
|
||||
if($id_parent && isset($this->fields['form']['parent']) && ($parent = 'id_'.$this->fields['form']['parent']) && property_exists($this,$parent))
|
||||
$this->$parent = $id_parent;
|
||||
if($id_parent2 && isset($this->fields['form']['parent2']) && ($parent2 = 'id_'.$this->fields['form']['parent2']) && property_exists($this,$parent2))
|
||||
$this->$parent2 = $id_parent2;
|
||||
if(property_exists($this,'sort_order'))
|
||||
{
|
||||
if(!isset($this->fields['form']['parent'])|| !isset($this->fields['configs']['sort_order']['order_group'][$this->fields['form']['parent']]) || isset($this->fields['configs']['sort_order']['order_group'][$this->fields['form']['parent']]) && !$this->fields['configs']['sort_order']['order_group'][$this->fields['form']['parent']])
|
||||
$this->sort_order = $this->maxVal('sort_order')+1;
|
||||
else
|
||||
{
|
||||
$tempName = $this->fields['configs']['sort_order']['order_group'][$this->fields['form']['parent']];
|
||||
$this->sort_order = $this->maxVal('sort_order',$tempName,(int)$this->$tempName)+1;
|
||||
$groupId = $this->$tempName;
|
||||
}
|
||||
$oldOrder = $this->sort_order;
|
||||
}
|
||||
if(property_exists($this,'image') && $this->image && file_exists(dirname(__FILE__).'/../views/img/upload/'.$this->image))
|
||||
{
|
||||
$salt = $this->maxVal('id_'.$this->fields['form']['name'])+1;
|
||||
$oldImage = dirname(__FILE__).'/../views/img/upload/'.$this->image;
|
||||
$this->image = $salt.'_'.$this->image;
|
||||
}
|
||||
if(property_exists($this,'menu_img_link') && $this->menu_img_link && file_exists(dirname(__FILE__).'/../views/img/upload/'.$this->menu_img_link))
|
||||
{
|
||||
$salt = $this->maxVal('id_'.$this->fields['form']['name'])+1;
|
||||
$oldmenu_img_link = dirname(__FILE__).'/../views/img/upload/'.$this->menu_img_link;
|
||||
$this->menu_img_link = $salt.'_'.$this->menu_img_link;
|
||||
}
|
||||
if(property_exists($this,'background_image') && $this->background_image && file_exists(dirname(__FILE__).'/../views/img/upload/'.$this->background_image))
|
||||
{
|
||||
$salt = $this->maxVal('id_'.$this->fields['form']['name'])+1;
|
||||
$oldbackground_image = dirname(__FILE__).'/../views/img/upload/'.$this->background_image;
|
||||
$this->background_image = $salt.'_'.$this->background_image;
|
||||
}
|
||||
if(property_exists($this,'tab_img_link') && $this->tab_img_link && file_exists(dirname(__FILE__).'/../views/img/upload/'.$this->tab_img_link))
|
||||
{
|
||||
$salt = $this->maxVal('id_'.$this->fields['form']['name'])+1;
|
||||
$oldtab_img_link = dirname(__FILE__).'/../views/img/upload/'.$this->tab_img_link;
|
||||
$this->image = $salt.'_'.$this->tab_img_link;
|
||||
}
|
||||
if($this->add())
|
||||
{
|
||||
if(isset($oldImage) && $oldImage)
|
||||
{
|
||||
@copy($oldImage,dirname(__FILE__).'/../views/img/upload/'.$this->image);
|
||||
}
|
||||
if(isset($oldmenu_img_link) && $oldmenu_img_link)
|
||||
{
|
||||
@copy($oldmenu_img_link,dirname(__FILE__).'/../views/img/upload/'.$this->menu_img_link);
|
||||
}
|
||||
if(isset($oldbackground_image) && $oldbackground_image)
|
||||
{
|
||||
@copy($oldbackground_image,dirname(__FILE__).'/../views/img/upload/'.$this->background_image);
|
||||
}
|
||||
if(isset($oldtab_img_link) && $oldtab_img_link)
|
||||
{
|
||||
@copy($oldtab_img_link,dirname(__FILE__).'/../views/img/upload/'.$this->tab_img_link);
|
||||
}
|
||||
if(isset($oldOrder) && $oldOrder)
|
||||
$this->updateOrder($oldId,isset($groupId) ? (int)$groupId : 0);
|
||||
if(get_class($this)=='MM_Menu' && $this->enabled_vertical)
|
||||
{
|
||||
if(isset($this->fields['form']['connect_to2']) && $this->fields['form']['connect_to2']
|
||||
&& ($subs = Db::getInstance()->executeS("SELECT id_".pSQL($this->fields['form']['connect_to2'])." FROM "._DB_PREFIX_."ets_mm_".pSQL($this->fields['form']['connect_to2']). " WHERE id_".pSQL($this->fields['form']['name'])."=".(int)$oldId)))
|
||||
{
|
||||
foreach($subs as $sub)
|
||||
{
|
||||
$className = 'MM_'.Tools::ucfirst(Tools::strtolower($this->fields['form']['connect_to2']));
|
||||
if(class_exists($className))
|
||||
{
|
||||
$obj = new $className((int)$sub['id_'.$this->fields['form']['connect_to2']]);
|
||||
if(get_class($this)=='MM_Tab')
|
||||
$obj->duplicateItem($id_parent, $this->id);
|
||||
else
|
||||
$obj->duplicateItem($this->id);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
if(isset($this->fields['form']['connect_to']) && $this->fields['form']['connect_to']
|
||||
&& ($subs = Db::getInstance()->executeS("SELECT id_".pSQL($this->fields['form']['connect_to'])." FROM "._DB_PREFIX_."ets_mm_".pSQL($this->fields['form']['connect_to']). " WHERE id_".pSQL($this->fields['form']['name'])."=".(int)$oldId)))
|
||||
{
|
||||
foreach($subs as $sub)
|
||||
{
|
||||
$className = 'MM_'.Tools::ucfirst(Tools::strtolower($this->fields['form']['connect_to']));
|
||||
if(class_exists($className))
|
||||
{
|
||||
$obj = new $className((int)$sub['id_'.$this->fields['form']['connect_to']]);
|
||||
if(get_class($this)=='MM_Tab')
|
||||
$obj->duplicateItem($id_parent, $this->id);
|
||||
else
|
||||
$obj->duplicateItem($this->id);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
return $this;
|
||||
}
|
||||
return false;
|
||||
}
|
||||
public function update($null_value=false)
|
||||
{
|
||||
$ok = parent::update($null_value);
|
||||
if(get_class($this)=='MM_Menu' && $this->enabled_vertical)
|
||||
{
|
||||
$columns= Db::getInstance()->executeS('SELECT id_column FROM '._DB_PREFIX_.'ets_mm_column WHERE id_menu='.(int)$this->id.' AND id_tab not in (SELECT id_tab FROM '._DB_PREFIX_.'ets_mm_tab where id_menu ='.(int)$this->id.')');
|
||||
if($columns)
|
||||
{
|
||||
$id_tab= Db::getInstance()->getValue('SELECT id_tab FROM '._DB_PREFIX_.'ets_mm_tab where id_menu='.(int)$this->id);
|
||||
if(!$id_tab)
|
||||
{
|
||||
$tab=new MM_Tab();
|
||||
$tab->id_menu=$this->id;
|
||||
$tab->enabled=1;
|
||||
$languages= Language::getLanguages(false);
|
||||
foreach($languages as $language)
|
||||
{
|
||||
$tab->title[$language['id_lang']] ='Undefined title';
|
||||
}
|
||||
$tab->add();
|
||||
$id_tab=$tab->id;
|
||||
}
|
||||
foreach($columns as $column)
|
||||
{
|
||||
Db::getInstance()->execute('UPDATE '._DB_PREFIX_.'ets_mm_column SET id_tab="'.(int)$id_tab.'" WHERE id_column='.(int)$column['id_column']);
|
||||
}
|
||||
}
|
||||
}
|
||||
return $ok;
|
||||
}
|
||||
}
|
||||
280
modules/ets_megamenu/classes/MM_Products.php
Normal file
@@ -0,0 +1,280 @@
|
||||
<?php
|
||||
/**
|
||||
* 2007-2021 ETS-Soft
|
||||
*
|
||||
* NOTICE OF LICENSE
|
||||
*
|
||||
* This file is not open source! Each license that you purchased is only available for 1 wesite only.
|
||||
* If you want to use this file on more websites (or projects), you need to purchase additional licenses.
|
||||
* You are not allowed to redistribute, resell, lease, license, sub-license or offer our resources to any third party.
|
||||
*
|
||||
* 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 contact us for extra customization service at an affordable price
|
||||
*
|
||||
* @author ETS-Soft <etssoft.jsc@gmail.com>
|
||||
* @copyright 2007-2021 ETS-Soft
|
||||
* @license Valid for 1 website (or project) for each purchase of license
|
||||
* International Registered Trademark & Property of ETS-Soft
|
||||
*/
|
||||
|
||||
class MM_Products
|
||||
{
|
||||
private static $is17 = false;
|
||||
private $nProducts = 1;
|
||||
private $id_category = 2;
|
||||
private $Page = 1;
|
||||
private $orderBy = null;
|
||||
private $orderWay = null;
|
||||
private $randSeed = 1;
|
||||
private $context;
|
||||
|
||||
public function __construct(Context $context)
|
||||
{
|
||||
if ($context)
|
||||
$this->context = $context;
|
||||
else
|
||||
$this->context = Context::getContext();
|
||||
self::$is17 = version_compare(_PS_VERSION_, '1.7', '>=');
|
||||
}
|
||||
|
||||
public function setRandSeed($randSeed)
|
||||
{
|
||||
$this->randSeed = $randSeed;
|
||||
return $this;
|
||||
}
|
||||
|
||||
public function setIdCategory($id_category)
|
||||
{
|
||||
$this->id_category = $id_category;
|
||||
return $this;
|
||||
}
|
||||
|
||||
public function setPage($Page)
|
||||
{
|
||||
$this->Page = $Page;
|
||||
return $this;
|
||||
}
|
||||
|
||||
public function setPerPage($nProducts)
|
||||
{
|
||||
$this->nProducts = $nProducts;
|
||||
return $this;
|
||||
}
|
||||
|
||||
public function setOrderBy($orderBy)
|
||||
{
|
||||
$this->orderBy = $orderBy;
|
||||
return $this;
|
||||
}
|
||||
|
||||
public function setOrderWay($orderWay)
|
||||
{
|
||||
$this->orderWay = $orderWay;
|
||||
return $this;
|
||||
}
|
||||
|
||||
public function getPages($methods)
|
||||
{
|
||||
if (!$methods)
|
||||
return 1;
|
||||
$nbTotal = (int)$this->{$methods}(true);
|
||||
return ceil($nbTotal/$this->nProducts);
|
||||
}
|
||||
|
||||
public function getBestSellers($count = false)
|
||||
{
|
||||
if ($count)
|
||||
return ProductSale::getNbSales();
|
||||
if (($bestSales = ProductSale::getBestSales((int)$this->context->language->id, $this->Page, $this->nProducts, $this->orderBy, $this->orderWay)))
|
||||
{
|
||||
if (!self::$is17) {
|
||||
$currency = new Currency((int)$this->context->currency->id);
|
||||
$use_tax = (Product::getTaxCalculationMethod((isset($this->context->customer->id) && $this->context->customer->id? (int)$this->context->customer->id : null)) != PS_TAX_EXC);
|
||||
foreach ($bestSales as &$product){
|
||||
$product['price'] = Tools::displayPrice(Product::getPriceStatic((int)$product['id_product'], $use_tax), $currency);
|
||||
}
|
||||
}
|
||||
}
|
||||
return $bestSales;
|
||||
}
|
||||
|
||||
public function getHomeFeatured($count = false)
|
||||
{
|
||||
if (!$this->id_category)
|
||||
return array();
|
||||
$category = new Category((int)$this->id_category, (int)$this->context->language->id);
|
||||
if (!$category->active)
|
||||
return false;
|
||||
if ($count)
|
||||
return $category->getProducts((int)$this->context->language->id, 0, 0, null, null, false, 1, ($this->context->controller->controller_type != 'admin'? true : false), $this->context);
|
||||
$products = $category->getProducts(
|
||||
(int)$this->context->language->id, $this->Page, $this->nProducts, $this->orderBy, $this->orderWay, false, true,
|
||||
($this->orderBy != 'rand'? false : true), ($this->orderBy != 'rand'? 1 : $this->nProducts),
|
||||
($this->context->controller->controller_type != 'admin'? true : false), $this->context
|
||||
);
|
||||
return $products;
|
||||
}
|
||||
|
||||
public function getNewProducts($count = false)
|
||||
{
|
||||
if ($count)
|
||||
return Product::getNewProducts((int)$this->context->language->id, 0, 0, true);
|
||||
$newProducts = false;
|
||||
if (Configuration::get('PS_NB_DAYS_NEW_PRODUCT')) {
|
||||
$newProducts = Product::getNewProducts((int)$this->context->language->id, $this->Page, $this->nProducts, false, $this->orderBy, $this->orderWay, $this->context);
|
||||
}
|
||||
return $newProducts;
|
||||
}
|
||||
|
||||
public function getSpecialProducts($count = false)
|
||||
{
|
||||
if ($count)
|
||||
return self::getPricesDrop((int)$this->context->language->id, 0, 0, true);
|
||||
$pricesDrops = self::getPricesDrop((int)$this->context->language->id, $this->Page, $this->nProducts, false, $this->orderBy, $this->orderWay, false, false, $this->context);
|
||||
return $pricesDrops;
|
||||
}
|
||||
|
||||
public static function getPricesDrop(
|
||||
$id_lang,
|
||||
$page_number = 0,
|
||||
$nb_products = 10,
|
||||
$count = false,
|
||||
$order_by = null,
|
||||
$order_way = null,
|
||||
$beginning = false,
|
||||
$ending = false,
|
||||
Context $context = null ) {
|
||||
if (!Validate::isBool($count)) {
|
||||
die(Tools::displayError());
|
||||
}
|
||||
|
||||
if (!$context) {
|
||||
$context = Context::getContext();
|
||||
}
|
||||
if ($page_number < 1) {
|
||||
$page_number = 1;
|
||||
}
|
||||
if ($nb_products < 1) {
|
||||
$nb_products = 10;
|
||||
}
|
||||
if (empty($order_by) || $order_by == 'position') {
|
||||
$order_by = 'price';
|
||||
}
|
||||
if (empty($order_way)) {
|
||||
$order_way = 'DESC';
|
||||
}
|
||||
if ($order_by == 'id_product' || $order_by == 'price' || $order_by == 'date_add' || $order_by == 'date_upd') {
|
||||
$order_by_prefix = 'product_shop';
|
||||
} elseif ($order_by == 'name') {
|
||||
$order_by_prefix = 'pl';
|
||||
}
|
||||
if (!Validate::isOrderBy($order_by) || !Validate::isOrderWay($order_way)) {
|
||||
die(Tools::displayError());
|
||||
}
|
||||
$current_date = date('Y-m-d H:i:00');
|
||||
$ids_product = self::_getProductIdByDate((!$beginning ? $current_date : $beginning), (!$ending ? $current_date : $ending), $context);
|
||||
$tab_id_product = array();
|
||||
foreach ($ids_product as $product) {
|
||||
if (is_array($product)) {
|
||||
$tab_id_product[] = (int)$product['id_product'];
|
||||
} else {
|
||||
$tab_id_product[] = (int)$product;
|
||||
}
|
||||
}
|
||||
$front = false;
|
||||
if ($context->controller->controller_type != 'admin') {
|
||||
$front = true;
|
||||
}
|
||||
$sql_groups = '';
|
||||
if (Group::isFeatureActive()) {
|
||||
$groups = FrontController::getCurrentCustomerGroups();
|
||||
$sql_groups = ' AND EXISTS(SELECT 1 FROM `'._DB_PREFIX_.'category_product` cp JOIN `'._DB_PREFIX_.'category_group` cg ON (cp.id_category = cg.id_category AND cg.`id_group` '.(count($groups) ? 'IN ('.implode(',', $groups).')' : '= 1').') WHERE cp.`id_product` = p.`id_product`)';
|
||||
}
|
||||
|
||||
if ($count) {
|
||||
return Db::getInstance(_PS_USE_SQL_SLAVE_)->getValue('
|
||||
SELECT COUNT(DISTINCT p.`id_product`)
|
||||
FROM `'._DB_PREFIX_.'product` p
|
||||
'.Shop::addSqlAssociation('product', 'p').'
|
||||
WHERE product_shop.`active` = 1
|
||||
AND product_shop.`show_price` = 1
|
||||
'.($front ? ' AND product_shop.`visibility` IN ("both", "catalog")' : '').'
|
||||
'.((!$beginning && !$ending) ? 'AND p.`id_product` IN('.((is_array($tab_id_product) && count($tab_id_product)) ? implode(', ', $tab_id_product) : 0).')' : '').'
|
||||
'.$sql_groups);
|
||||
}
|
||||
|
||||
if (strpos($order_by, '.') > 0) {
|
||||
$order_by = explode('.', $order_by);
|
||||
$order_by = pSQL($order_by[0]).'.`'.pSQL($order_by[1]).'`';
|
||||
}
|
||||
$prev_version = version_compare(_PS_VERSION_, '1.6.1.0', '<');
|
||||
$sql = '
|
||||
SELECT
|
||||
p.*, product_shop.*, stock.out_of_stock, IFNULL(stock.quantity, 0) as quantity, pl.`description`, pl.`description_short`, pl.`available_now`, pl.`available_later`,
|
||||
'.($prev_version? ' MAX(product_attribute_shop.id_product_attribute)' : ' IFNULL(product_attribute_shop.id_product_attribute, 0)').' `id_product_attribute`,
|
||||
pl.`link_rewrite`, pl.`meta_description`, pl.`meta_keywords`, pl.`meta_title`,
|
||||
pl.`name`, '.($prev_version? 'MAX(image_shop.`id_image`)' : 'image_shop.`id_image`').' `id_image`, il.`legend`, m.`name` AS manufacturer_name,
|
||||
DATEDIFF(
|
||||
p.`date_add`,
|
||||
DATE_SUB(
|
||||
"'.date('Y-m-d').' 00:00:00",
|
||||
INTERVAL '.(Validate::isUnsignedInt(Configuration::get('PS_NB_DAYS_NEW_PRODUCT')) ? Configuration::get('PS_NB_DAYS_NEW_PRODUCT') : 20).' DAY
|
||||
)
|
||||
) > 0 AS new
|
||||
FROM `'._DB_PREFIX_.'product` p' .Shop::addSqlAssociation('product', 'p')
|
||||
.($prev_version? 'LEFT JOIN '._DB_PREFIX_.'product_attribute pa ON (pa.id_product = p.id_product)'.Shop::addSqlAssociation('product_attribute', 'pa', false, 'product_attribute_shop.default_on=1').'':'LEFT JOIN `'._DB_PREFIX_.'product_attribute_shop` product_attribute_shop ON (p.`id_product` = product_attribute_shop.`id_product` AND product_attribute_shop.`default_on` = 1 AND product_attribute_shop.id_shop='.(int)$context->shop->id.')')
|
||||
.Product::sqlStock('p', 0, false, $context->shop).'
|
||||
LEFT JOIN `'._DB_PREFIX_.'product_lang` pl ON (p.`id_product` = pl.`id_product`AND pl.`id_lang` = '.(int)$id_lang.Shop::addSqlRestrictionOnLang('pl').')'
|
||||
.($prev_version? 'LEFT JOIN `'._DB_PREFIX_.'image` i ON (i.`id_product` = p.`id_product`)'. Shop::addSqlAssociation('image', 'i', false, 'image_shop.cover=1') : 'LEFT JOIN `' . _DB_PREFIX_ . 'image_shop` image_shop ON (image_shop.`id_product` = p.`id_product` AND image_shop.id_shop=' . (int)$context->shop->id . ')').'
|
||||
LEFT JOIN `'._DB_PREFIX_.'image_lang` il ON ('.($prev_version? 'i' : 'image_shop').'.`id_image` = il.`id_image` AND il.`id_lang` = '.(int)$id_lang.')
|
||||
LEFT JOIN `'._DB_PREFIX_.'manufacturer` m ON (m.`id_manufacturer` = p.`id_manufacturer`)
|
||||
WHERE product_shop.`active` = 1
|
||||
AND product_shop.`show_price` = 1
|
||||
'.($front ? ' AND product_shop.`visibility` IN ("both", "catalog")' : '').'
|
||||
'.((!$beginning && !$ending) ? ' AND p.`id_product` IN ('.((is_array($tab_id_product) && count($tab_id_product)) ? implode(', ', $tab_id_product) : 0).')' : '').'
|
||||
'.pSQL($sql_groups).'
|
||||
GROUP BY product_shop.id_product
|
||||
ORDER BY '.(isset($order_by_prefix) ? pSQL($order_by_prefix).'.' : '').pSQL($order_by).' '.pSQL($order_way).'
|
||||
LIMIT '.(int)(($page_number-1) * $nb_products).', '.(int)$nb_products;
|
||||
|
||||
$result = Db::getInstance(_PS_USE_SQL_SLAVE_)->executeS($sql);
|
||||
|
||||
if (!$result) {
|
||||
return false;
|
||||
}
|
||||
|
||||
if ($order_by == 'price') {
|
||||
Tools::orderbyPrice($result, $order_way);
|
||||
}
|
||||
|
||||
return Product::getProductsProperties($id_lang, $result);
|
||||
}
|
||||
|
||||
protected static function _getProductIdByDate($beginning, $ending, Context $context = null, $with_combination = false)
|
||||
{
|
||||
if (!$context) {
|
||||
$context = Context::getContext();
|
||||
}
|
||||
$id_country = (int)Configuration::get('PS_COUNTRY_DEFAULT');
|
||||
if ($context->controller->controller_type != 'admin')
|
||||
{
|
||||
$id_address = $context->cart->{Configuration::get('PS_TAX_ADDRESS_TYPE')};
|
||||
$ids = Address::getCountryAndState($id_address);
|
||||
if (!empty($ids['id_country']))
|
||||
$id_country = $ids['id_country'];
|
||||
}
|
||||
return SpecificPrice::getProductIdByDate(
|
||||
$context->shop->id,
|
||||
$context->currency->id,
|
||||
$id_country,
|
||||
(int)Configuration::get('PS_CUSTOMER_GROUP'),
|
||||
$beginning,
|
||||
$ending,
|
||||
0,
|
||||
$with_combination
|
||||
);
|
||||
}
|
||||
}
|
||||
83
modules/ets_megamenu/classes/MM_Tab.php
Normal file
@@ -0,0 +1,83 @@
|
||||
<?php
|
||||
/**
|
||||
* 2007-2021 ETS-Soft
|
||||
*
|
||||
* NOTICE OF LICENSE
|
||||
*
|
||||
* This file is not open source! Each license that you purchased is only available for 1 wesite only.
|
||||
* If you want to use this file on more websites (or projects), you need to purchase additional licenses.
|
||||
* You are not allowed to redistribute, resell, lease, license, sub-license or offer our resources to any third party.
|
||||
*
|
||||
* 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 contact us for extra customization service at an affordable price
|
||||
*
|
||||
* @author ETS-Soft <etssoft.jsc@gmail.com>
|
||||
* @copyright 2007-2021 ETS-Soft
|
||||
* @license Valid for 1 website (or project) for each purchase of license
|
||||
* International Registered Trademark & Property of ETS-Soft
|
||||
*/
|
||||
|
||||
if (!defined('_PS_VERSION_'))
|
||||
exit;
|
||||
class MM_Tab extends MM_Obj
|
||||
{
|
||||
public $id_tab;
|
||||
public $id_menu;
|
||||
public $tab_img_link;
|
||||
public $tab_sub_width;
|
||||
public $menu_ver_hidden_border;
|
||||
public $tab_sub_content_pos;
|
||||
public $tab_icon;
|
||||
public $title;
|
||||
public $enabled;
|
||||
public $sort_order;
|
||||
public $bubble_background_color;
|
||||
public $bubble_text_color;
|
||||
public $bubble_text;
|
||||
public $background_image;
|
||||
public $position_background;
|
||||
public $url;
|
||||
public static $definition = array(
|
||||
'table' => 'ets_mm_tab',
|
||||
'primary' => 'id_tab',
|
||||
'multilang' => true,
|
||||
'fields' => array(
|
||||
'id_menu' => array('type' => self::TYPE_INT),
|
||||
'tab_img_link'=> array('type'=>self::TYPE_STRING),
|
||||
'tab_sub_width'=> array('type'=>self::TYPE_STRING),
|
||||
'tab_icon'=> array('type'=>self::TYPE_STRING),
|
||||
'bubble_text_color'=> array('type'=>self::TYPE_STRING),
|
||||
'bubble_background_color'=> array('type'=>self::TYPE_STRING),
|
||||
'tab_sub_content_pos'=>array('type'=>self::TYPE_INT),
|
||||
'enabled'=>array('type'=>self::TYPE_INT),
|
||||
'background_image' => array('type' => self::TYPE_STRING),
|
||||
'position_background' => array('type' => self::TYPE_STRING),
|
||||
'title' => array('type' => self::TYPE_STRING,'lang' => true),
|
||||
'url' => array('type'=>self::TYPE_STRING,'lang'=>true),
|
||||
'bubble_text' => array('type' => self::TYPE_STRING,'lang' => true),
|
||||
'sort_order' => array('type' => self::TYPE_INT),
|
||||
)
|
||||
);
|
||||
public function __construct($id_item = null, $id_lang = null, $id_shop = null, Context $context = null)
|
||||
{
|
||||
parent::__construct($id_item, $id_lang, $id_shop);
|
||||
$languages = Language::getLanguages(false);
|
||||
foreach($languages as $lang)
|
||||
{
|
||||
foreach(self::$definition['fields'] as $field => $params)
|
||||
{
|
||||
$temp = $this->$field;
|
||||
if(isset($params['lang']) && $params['lang'] && !isset($temp[$lang['id_lang']]))
|
||||
{
|
||||
$temp[$lang['id_lang']] = '';
|
||||
}
|
||||
$this->$field = $temp;
|
||||
}
|
||||
}
|
||||
unset($context);
|
||||
$this->setFields(Ets_megamenu::$tab_class);
|
||||
}
|
||||
}
|
||||
249
modules/ets_megamenu/classes/Uploader.php
Normal file
@@ -0,0 +1,249 @@
|
||||
<?php
|
||||
/**
|
||||
* 2007-2021 ETS-Soft
|
||||
*
|
||||
* NOTICE OF LICENSE
|
||||
*
|
||||
* This file is not open source! Each license that you purchased is only available for 1 wesite only.
|
||||
* If you want to use this file on more websites (or projects), you need to purchase additional licenses.
|
||||
* You are not allowed to redistribute, resell, lease, license, sub-license or offer our resources to any third party.
|
||||
*
|
||||
* 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 contact us for extra customization service at an affordable price
|
||||
*
|
||||
* @author ETS-Soft <etssoft.jsc@gmail.com>
|
||||
* @copyright 2007-2021 ETS-Soft
|
||||
* @license Valid for 1 website (or project) for each purchase of license
|
||||
* International Registered Trademark & Property of ETS-Soft
|
||||
*/
|
||||
|
||||
class Uploader
|
||||
{
|
||||
const DEFAULT_MAX_SIZE = 10485760;
|
||||
private $_check_file_size;
|
||||
private $_accept_types;
|
||||
private $_files;
|
||||
private $_max_size;
|
||||
private $_name;
|
||||
private $_save_path;
|
||||
public function __construct($name = null)
|
||||
{
|
||||
$this->setName($name);
|
||||
$this->setCheckFileSize(true);
|
||||
$this->files = array();
|
||||
}
|
||||
public function setAcceptTypes($value)
|
||||
{
|
||||
if (is_array($value) && count($value)) {
|
||||
$value = array_map(array('Tools', 'strtolower'), $value);
|
||||
}
|
||||
$this->_accept_types = $value;
|
||||
return $this;
|
||||
}
|
||||
public function getAcceptTypes()
|
||||
{
|
||||
return $this->_accept_types;
|
||||
}
|
||||
public function setCheckFileSize($value)
|
||||
{
|
||||
$this->_check_file_size = $value;
|
||||
return $this;
|
||||
}
|
||||
public function getFilePath($file_name = null)
|
||||
{
|
||||
if (!isset($file_name)) {
|
||||
return tempnam($this->getSavePath(), $this->getUniqueFileName());
|
||||
}
|
||||
return $this->getSavePath().$file_name;
|
||||
}
|
||||
public function getFiles()
|
||||
{
|
||||
if (!isset($this->_files)) {
|
||||
$this->_files = array();
|
||||
}
|
||||
return $this->_files;
|
||||
}
|
||||
public function setMaxSize($value)
|
||||
{
|
||||
$this->_max_size = (int)$value;
|
||||
return $this;
|
||||
}
|
||||
public function getMaxSize()
|
||||
{
|
||||
if (!isset($this->_max_size) || empty($this->_max_size)) {
|
||||
$this->setMaxSize(self::DEFAULT_MAX_SIZE);
|
||||
}
|
||||
return $this->_max_size;
|
||||
}
|
||||
public function setName($value)
|
||||
{
|
||||
$this->_name = $value;
|
||||
return $this;
|
||||
}
|
||||
public function getName()
|
||||
{
|
||||
return $this->_name;
|
||||
}
|
||||
public function setSavePath($value)
|
||||
{
|
||||
$this->_save_path = $value;
|
||||
return $this;
|
||||
}
|
||||
public function getPostMaxSizeBytes()
|
||||
{
|
||||
$post_max_size = ini_get('post_max_size');
|
||||
$bytes = (int)trim($post_max_size);
|
||||
$last = Tools::strtolower($post_max_size[Tools::strlen($post_max_size) - 1]);
|
||||
switch ($last) {
|
||||
case 'g': $bytes *= 1024;
|
||||
case 'm': $bytes *= 1024;
|
||||
case 'k': $bytes *= 1024;
|
||||
}
|
||||
if ($bytes == '') {
|
||||
$bytes = null;
|
||||
}
|
||||
return $bytes;
|
||||
}
|
||||
public function getSavePath()
|
||||
{
|
||||
if (!isset($this->_save_path)) {
|
||||
$this->setSavePath(_PS_UPLOAD_DIR_);
|
||||
}
|
||||
return $this->_normalizeDirectory($this->_save_path);
|
||||
}
|
||||
public function getUniqueFileName($prefix = 'PS')
|
||||
{
|
||||
return uniqid($prefix, true);
|
||||
}
|
||||
public function checkFileSize()
|
||||
{
|
||||
return (isset($this->_check_file_size) && $this->_check_file_size);
|
||||
}
|
||||
public function process($dest = null)
|
||||
{
|
||||
$upload = isset($_FILES[$this->getName()]) ? $_FILES[$this->getName()] : null;
|
||||
if ($upload && is_array($upload['tmp_name'])) {
|
||||
$tmp = array();
|
||||
foreach ($upload['tmp_name'] as $index => $value) {
|
||||
$tmp[$index] = array(
|
||||
'tmp_name' => $upload['tmp_name'][$index],
|
||||
'name' => $upload['name'][$index],
|
||||
'size' => $upload['size'][$index],
|
||||
'type' => $upload['type'][$index],
|
||||
'error' => $upload['error'][$index]
|
||||
);
|
||||
$this->files[] = $this->upload($tmp[$index], $dest);
|
||||
}
|
||||
unset($value);
|
||||
} elseif ($upload) {
|
||||
$this->files[] = $this->upload($upload, $dest);
|
||||
}
|
||||
return $this->files;
|
||||
}
|
||||
public function upload($file, $dest = null)
|
||||
{
|
||||
if ($this->validate($file)) {
|
||||
if (isset($dest) && is_dir($dest)) {
|
||||
$file_path = $dest;
|
||||
} else {
|
||||
$file_path = $this->getFilePath(isset($dest) ? $dest : $file['name']);
|
||||
}
|
||||
if ($file['tmp_name'] && is_uploaded_file($file['tmp_name'])) {
|
||||
move_uploaded_file($file['tmp_name'], $file_path);
|
||||
} else {
|
||||
// Non-multipart uploads (PUT method support)
|
||||
file_put_contents($file_path, fopen('php://input', 'r'));
|
||||
}
|
||||
$file_size = $this->_getFileSize($file_path, true);
|
||||
if ($file_size === $file['size']) {
|
||||
$file['save_path'] = $file_path;
|
||||
} else {
|
||||
$file['size'] = $file_size;
|
||||
unlink($file_path);
|
||||
$file['error'] = Tools::displayError('Server file size is different from local file size');
|
||||
}
|
||||
}
|
||||
return $file;
|
||||
}
|
||||
protected function checkUploadError($error_code)
|
||||
{
|
||||
$error = 0;
|
||||
switch ($error_code) {
|
||||
case 1:
|
||||
$error = sprintf(Tools::displayError('The uploaded file exceeds %s'), ini_get('upload_max_filesize'));
|
||||
break;
|
||||
case 2:
|
||||
$error = sprintf(Tools::displayError('The uploaded file exceeds %s'), ini_get('post_max_size'));
|
||||
break;
|
||||
case 3:
|
||||
$error = Tools::displayError('The uploaded file was only partially uploaded');
|
||||
break;
|
||||
case 4:
|
||||
$error = Tools::displayError('No file was uploaded');
|
||||
break;
|
||||
case 6:
|
||||
$error = Tools::displayError('Missing temporary folder');
|
||||
break;
|
||||
case 7:
|
||||
$error = Tools::displayError('Failed to write file to disk');
|
||||
break;
|
||||
case 8:
|
||||
$error = Tools::displayError('A PHP extension stopped the file upload');
|
||||
break;
|
||||
default:
|
||||
break;
|
||||
}
|
||||
return $error;
|
||||
}
|
||||
protected function validate(&$file)
|
||||
{
|
||||
$file['error'] = $this->checkUploadError($file['error']);
|
||||
if ($file['error']) {
|
||||
return false;
|
||||
}
|
||||
$post_max_size = $this->getPostMaxSizeBytes();
|
||||
if ($post_max_size && ($this->_getServerVars('CONTENT_LENGTH') > $post_max_size)) {
|
||||
$file['error'] = Tools::displayError('The uploaded file exceeds the post_max_size directive in php.ini');
|
||||
return false;
|
||||
}
|
||||
if (preg_match('/\%00/', $file['name'])) {
|
||||
$file['error'] = Tools::displayError('Invalid file name');
|
||||
return false;
|
||||
}
|
||||
$types = $this->getAcceptTypes();
|
||||
//TODO check mime type.
|
||||
if (isset($types) && !in_array(Tools::strtolower(pathinfo($file['name'], PATHINFO_EXTENSION)), $types)) {
|
||||
$file['error'] = Tools::displayError('Filetype not allowed');
|
||||
return false;
|
||||
}
|
||||
if ($this->checkFileSize() && $file['size'] > $this->getMaxSize()) {
|
||||
$file['error'] = sprintf(Tools::displayError('File (size : %1s) is too big (max : %2s)'), $file['size'], $this->getMaxSize());
|
||||
return false;
|
||||
}
|
||||
return true;
|
||||
}
|
||||
protected function _getFileSize($file_path, $clear_stat_cache = false)
|
||||
{
|
||||
if ($clear_stat_cache) {
|
||||
clearstatcache(true, $file_path);
|
||||
}
|
||||
return filesize($file_path);
|
||||
}
|
||||
protected function _getServerVars($var)
|
||||
{
|
||||
return (isset($_SERVER[$var]) ? $_SERVER[$var] : '');
|
||||
}
|
||||
protected function _normalizeDirectory($directory)
|
||||
{
|
||||
$last = $directory[Tools::strlen($directory) - 1];
|
||||
if (in_array($last, array('/', '\\'))) {
|
||||
$directory[Tools::strlen($directory) - 1] = DIRECTORY_SEPARATOR;
|
||||
return $directory;
|
||||
}
|
||||
$directory .= DIRECTORY_SEPARATOR;
|
||||
return $directory;
|
||||
}
|
||||
}
|
||||
31
modules/ets_megamenu/classes/index.php
Normal file
@@ -0,0 +1,31 @@
|
||||
<?php
|
||||
/**
|
||||
* 2007-2021 ETS-Soft
|
||||
*
|
||||
* NOTICE OF LICENSE
|
||||
*
|
||||
* This file is not open source! Each license that you purchased is only available for 1 wesite only.
|
||||
* If you want to use this file on more websites (or projects), you need to purchase additional licenses.
|
||||
* You are not allowed to redistribute, resell, lease, license, sub-license or offer our resources to any third party.
|
||||
*
|
||||
* 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 contact us for extra customization service at an affordable price
|
||||
*
|
||||
* @author ETS-Soft <etssoft.jsc@gmail.com>
|
||||
* @copyright 2007-2021 ETS-Soft
|
||||
* @license Valid for 1 website (or project) for each purchase of license
|
||||
* International Registered Trademark & Property of ETS-Soft
|
||||
*/
|
||||
|
||||
header("Expires: Mon, 26 Jul 1997 05:00:00 GMT");
|
||||
header("Last-Modified: ".gmdate("D, d M Y H:i:s")." GMT");
|
||||
|
||||
header("Cache-Control: no-store, no-cache, must-revalidate");
|
||||
header("Cache-Control: post-check=0, pre-check=0", false);
|
||||
header("Pragma: no-cache");
|
||||
|
||||
header("Location: ../");
|
||||
exit;
|
||||
12
modules/ets_megamenu/config.xml
Normal file
@@ -0,0 +1,12 @@
|
||||
<?xml version="1.0" encoding="UTF-8" ?>
|
||||
<module>
|
||||
<name>ets_megamenu</name>
|
||||
<displayName><![CDATA[Mega Menu PRO]]></displayName>
|
||||
<version><![CDATA[2.2.6]]></version>
|
||||
<description><![CDATA[Visual drag and drop mega menu builder]]></description>
|
||||
<author><![CDATA[ETS-Soft]]></author>
|
||||
<tab><![CDATA[front_office_features]]></tab>
|
||||
<is_configurable>1</is_configurable>
|
||||
<need_instance>0</need_instance>
|
||||
<limited_countries></limited_countries>
|
||||
</module>
|
||||
12
modules/ets_megamenu/config_pl.xml
Normal file
@@ -0,0 +1,12 @@
|
||||
<?xml version="1.0" encoding="UTF-8" ?>
|
||||
<module>
|
||||
<name>ets_megamenu</name>
|
||||
<displayName><![CDATA[Mega Menu PRO]]></displayName>
|
||||
<version><![CDATA[2.2.6]]></version>
|
||||
<description><![CDATA[Visual drag and drop mega menu builder]]></description>
|
||||
<author><![CDATA[ETS-Soft]]></author>
|
||||
<tab><![CDATA[front_office_features]]></tab>
|
||||
<is_configurable>1</is_configurable>
|
||||
<need_instance>0</need_instance>
|
||||
<limited_countries></limited_countries>
|
||||
</module>
|
||||
1
modules/ets_megamenu/data/google-fonts.json
Normal file
31
modules/ets_megamenu/data/index.php
Normal file
@@ -0,0 +1,31 @@
|
||||
<?php
|
||||
/**
|
||||
* 2007-2021 ETS-Soft
|
||||
*
|
||||
* NOTICE OF LICENSE
|
||||
*
|
||||
* This file is not open source! Each license that you purchased is only available for 1 wesite only.
|
||||
* If you want to use this file on more websites (or projects), you need to purchase additional licenses.
|
||||
* You are not allowed to redistribute, resell, lease, license, sub-license or offer our resources to any third party.
|
||||
*
|
||||
* 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 contact us for extra customization service at an affordable price
|
||||
*
|
||||
* @author ETS-Soft <etssoft.jsc@gmail.com>
|
||||
* @copyright 2007-2021 ETS-Soft
|
||||
* @license Valid for 1 website (or project) for each purchase of license
|
||||
* International Registered Trademark & Property of ETS-Soft
|
||||
*/
|
||||
|
||||
header("Expires: Mon, 26 Jul 1997 05:00:00 GMT");
|
||||
header("Last-Modified: ".gmdate("D, d M Y H:i:s")." GMT");
|
||||
|
||||
header("Cache-Control: no-store, no-cache, must-revalidate");
|
||||
header("Cache-Control: post-check=0, pre-check=0", false);
|
||||
header("Pragma: no-cache");
|
||||
|
||||
header("Location: ../");
|
||||
exit;
|
||||
4568
modules/ets_megamenu/ets_megamenu.php
Normal file
31
modules/ets_megamenu/index.php
Normal file
@@ -0,0 +1,31 @@
|
||||
<?php
|
||||
/**
|
||||
* 2007-2021 ETS-Soft
|
||||
*
|
||||
* NOTICE OF LICENSE
|
||||
*
|
||||
* This file is not open source! Each license that you purchased is only available for 1 wesite only.
|
||||
* If you want to use this file on more websites (or projects), you need to purchase additional licenses.
|
||||
* You are not allowed to redistribute, resell, lease, license, sub-license or offer our resources to any third party.
|
||||
*
|
||||
* 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 contact us for extra customization service at an affordable price
|
||||
*
|
||||
* @author ETS-Soft <etssoft.jsc@gmail.com>
|
||||
* @copyright 2007-2021 ETS-Soft
|
||||
* @license Valid for 1 website (or project) for each purchase of license
|
||||
* International Registered Trademark & Property of ETS-Soft
|
||||
*/
|
||||
|
||||
header("Expires: Mon, 26 Jul 1997 05:00:00 GMT");
|
||||
header("Last-Modified: ".gmdate("D, d M Y H:i:s")." GMT");
|
||||
|
||||
header("Cache-Control: no-store, no-cache, must-revalidate");
|
||||
header("Cache-Control: post-check=0, pre-check=0", false);
|
||||
header("Pragma: no-cache");
|
||||
|
||||
header("Location: ../");
|
||||
exit;
|
||||
BIN
modules/ets_megamenu/logo.gif
Normal file
|
After Width: | Height: | Size: 1.7 KiB |
BIN
modules/ets_megamenu/logo.png
Normal file
|
After Width: | Height: | Size: 1.6 KiB |
5
modules/ets_megamenu/translations/ar.php
Normal file
@@ -0,0 +1,5 @@
|
||||
<?php
|
||||
|
||||
global $_MODULE;
|
||||
$_MODULE = array();
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_968c8ef65d5d5d87254964b78a2e02f5'] = 'Mega Menu PRO';
|
||||
331
modules/ets_megamenu/translations/de.php
Normal file
@@ -0,0 +1,331 @@
|
||||
<?php
|
||||
|
||||
global $_MODULE;
|
||||
$_MODULE = array();
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_968c8ef65d5d5d87254964b78a2e02f5'] = 'Mega Menu PRO';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_b04f52f3454c7b0d75cdd09314eb0b52'] = 'Visual drag and drop mega menu builder';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_fc029308351f31f8fe047451beb1835b'] = 'THEME DEFAULT FONT';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_8a165af354761ba57a7f9413cf7b010a'] = 'Edit menu';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_f6c4ed278c3f8a43a2b4913a1d61c6d5'] = 'Add menu';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_c9cc8cce247e49bae79f15173ce97354'] = 'Save';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_02674a4ef33e11c879283629996c8ff8'] = 'Direction';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_c1b5fa03ecdb95d4a45dd1c40b02527f'] = 'Horizontal';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_06ce2a25e5d12c166a36f654dbea6012'] = 'Vertical';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_782ee9a18759cfa9ee20ed12a8bacce9'] = 'Vertical menu text color';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_6f91f9164ea25b4a4b1b00d4e9395154'] = 'Vertical menu background color';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_badc91809c2dc1fecabe778ecfc3bd9f'] = 'Always open vertical menu';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_c2e4b58b319f619175be628535cf6a69'] = 'Only use for desktop';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_93cba07454f06a4a960172bbd6e2a435'] = 'Yes';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_bafd7322c6e97d25b6299b5d6fe8920b'] = 'No';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_0cdbc3ce6753e2083253ef0ff3753347'] = 'Remove border';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_2641b32b86cfe616962d782685363198'] = 'Menu item width';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_4ade9e3bb42a3ad0b29de42915e05e04'] = 'Use \"px\" or \"%\" or \"vw\". Eg: \"20%\" or \"230px\" or \"80vw\"';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_62b6172b996ec621eee5722af8a1624b'] = 'Tab item width';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_231131cf0e206f235339643f8350739a'] = 'Menu link type';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_a7140e841df723ac623f174ba5aa088a'] = 'Custom link';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_622f3c75de9f3481ffc58c1f292c1c2b'] = 'CMS page';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_bbaff12800505b22a853e8b7f4eb6a22'] = 'Contact';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_3adbdb3ac060038aa0e6e6c138ef9873'] = 'Category';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_c0bd7654d5b278e65f21cf4e9153fdb4'] = 'Manufacturer';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_ec136b444eede3bc85639fac0dd06229'] = 'Supplier';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_8cf04a9734132302f96da8e113e80ce5'] = 'Home';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_b78a3223503896721cca1303f776159b'] = 'Title';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_ccff5fe10a335f4884d54e146e68b80d'] = 'Menu icon font';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_a579ead35787d34de93658bab29b8de5'] = 'Use font awesome class. Eg: fa-bars, fa-plus, ...';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_81a36689f3786c62f31b872020afc9dc'] = 'Menu icon image';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_67c0dcafa33f4e672d2b1fa59fde1cd3'] = 'Recommended size:20 x 20';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_546752887fe72e4c110341f2a780e929'] = 'Submenu alignment';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_9128ab2a4d2b92815cd4db44baab7077'] = '(LTR layout)';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_06b9281e396db002010bde1de57262eb'] = 'Auto';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_945d5e233cf7d6240f6b783b36a374ff'] = 'Left';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_92b09c7c48c520c3c55e497875da437c'] = 'Right';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_f5df0297bedf69afcbe26b8ab7805c9e'] = 'Submenu alignment is reversed on RTL layout automatically';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_22e10f4af52114387f314fee00020250'] = 'Display tabs in full width';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_358f993f450ec503a6ddf8915dc014ea'] = 'Sub menu width';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_3b26b2a6e99c6e75c9f7a6749b0652af'] = 'se \"px\" or \"%\" or \"vw\". Eg: \"100%\" or \"100px\" or \"80vw\"';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_95ff0dbd3f00cfcd9ee25dadae9911c0'] = 'Custom class';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_9a13acfbbe8803801f8f291919352eee'] = 'Bubble alert text';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_1ed3f9c6f7037274596ab54ea292d5a7'] = 'New, Sale, Hot... Leave blank if you do not want to have a bubble alert for this menu';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_fc1c9ff6972ea2b89de122633d9a9aaf'] = 'Bubble alert text color';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_423fadd8b2c94c6218a24c87117e7418'] = 'Bubble alert background color';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_69ee1afc9b3d02e53d9f733c1993b568'] = 'Background image';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_70c24c23b9c5312281659ef79d6874bd'] = 'Position background';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_4f1f6016fc9f3f2353c0cc7c67b292bd'] = 'Center';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_a4ffdcf0dc1f31b9acaf295d75b51d00'] = 'Top';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_d3708546a929dfcf66eaeaba794486eb'] = 'Top right';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_a4d0d101d6a34bf80ffeee601c3ff84a'] = 'Top left';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_2ad9d63b69c4a10a5cc9cad923133bc4'] = 'Bottom';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_b67554192c50f4f6a4c1bd4797f6c3f8'] = 'Bottom left';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_5968e3c37145f57587afcba727d2b120'] = 'Bottom right';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_75d6ef775a2104c57c52706d869a86be'] = 'Open link in new tab';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_06f1ac65b0a6a548339a38b348e64d79'] = 'Sort order';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_00d23a76e43b46dae9ec7aa9dcbebb32'] = 'Enabled';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_2da9b93934e51331be3c8ccf3428e001'] = 'Edit tab';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_67b766b66c1b187ef3ad796aabf1753b'] = 'Add tab';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_c90a53528da75f001e1d69dd844f0993'] = 'Tab icon font';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_840ec47f8515d48297c88a335e872fb3'] = 'Use font awesome class. Ex: fa-bars, fa-plus, ...';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_3f30215d52c4851b8f06c8f1c7a0bd22'] = 'Tab icon image';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_4d66066ad0f21b108844607a247f1112'] = 'Tab content width';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_2b5f489e77e74559e97bd43e979a4337'] = 'Display tab content from top';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_b61541208db7fa7dba42c85224405911'] = 'Menu';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_c3e7864531017869d04d401e5771cde4'] = 'Edit column';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_b61b8f498d489f2e2b916b887b7062bc'] = 'Add column';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_d83778cd6dc223fd79bb07d598d6223c'] = 'Column width size';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_e4c38d6d45baf080943d323dd51a2ce8'] = 'Break';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_aa5f289085a24b28d52c9113555e3b8b'] = 'Break from this column to new line';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_5c6ba25104401c9ee0650230fc6ba413'] = 'Tab';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_4f358ab0d7f1d9623bdcad1c346bd0f6'] = 'Edit block';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_2ff8071bcd15a31f9a743f1b06d0d00f'] = 'Add block';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_b5a812dff3c33b63cf77f0ce007da42e'] = 'Block type';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_8b407e232af57b6d8579d7ed0626c091'] = 'Text/Html';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_be53a0541a6d36f6ecb879fa2c584b08'] = 'Image';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_068f80c7519d0528fb08e82137a72131'] = 'Products';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_1976d7f704de389d9fe064e08ea35b2d'] = 'Column';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_cf23cd9379acd73edb90d1076efc862c'] = 'Title link';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_5d29e81352b150a3e306eb985f1735a8'] = 'Leave blank if you do not want to add a link to block title';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_2377be3c2ad9b435ba277a73f0f1ca76'] = 'Manufacturers';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_01fda57aa6c7e9f07f5aa36b108e95cb'] = 'Order by';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_809ab7c071cedac33b6ee810e32fb5f0'] = 'Name A-Z';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_d443ba2c0e31bbf213c36dfe1f81ac74'] = 'Name Z-A';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_f66306bc4b2f9bac47088451fc0bb476'] = 'Newest manufacturer first';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_3319557c87587792f7907b4a5881a095'] = 'Display manufacturers image';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_d02b2fc8af1142137d63860b0b638e7e'] = 'Display manufacturers name';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_c276bdf15015f63a89483dbbbfe6edd9'] = 'Manufacturers per row';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_1814d65a76028fdfbadab64a5a8076df'] = 'Suppliers';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_bae05f8f16fa0f42562df90f6713237e'] = 'Newest supplier first';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_6f34c552ec2167dff966202ccc68186b'] = 'Display suppliers image';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_10dc3660f72acc9b05c8742f2c8d301a'] = 'Display suppliers name';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_2bc7519ec199311e82717bef59ef6450'] = 'Suppliers per row';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_af1b98adf7f686b84cd0b443e022b7a0'] = 'Categories';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_63ce794099274c72d3844c1296a92db0'] = 'Default order';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_0bb450ed086ce232068db7852f99ded2'] = 'Newest category first';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_ccb48f393023eee753f69208f038e0f3'] = 'CMS pages';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_2386dbe21fd6472485a7e4a871160217'] = 'HTML/Text content';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_9ce38727cff004a058021a6c7351a74a'] = 'Image link';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_66110e941b9796cdaf57c8b1aadb6739'] = 'Leave blank if you do not want to add a link to image';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_3d19aea4e2d382e85165bbf71cef1e05'] = 'Product type';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_9ff0635f5737513b1a6f559ac2bff745'] = 'New products';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_7f55dc18fd28be03bea9991647014e92'] = 'Popular products';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_8af828f302b91d1f905dc35acc43efaa'] = 'Special products';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_01f7ac959c1e6ebbb2e0ee706a7a5255'] = 'Best sellers';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_43f03332c7f75a3056cfa2e29bda6bba'] = 'Specific products';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_437ac95a91364eb49587af5e146b1745'] = 'Search products';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_5221812aefa6842bf09217ee8dc0fea8'] = 'Search product by ID, name or reference';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_3e22403f8e252c77a37d5262ccb45159'] = 'Product count';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_3812464e9c462762cb7f1b1f3a8f0e30'] = 'item(s)';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_dbb7eaea6542941545255af0c27f0eaa'] = 'Enable product description';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_d4ea25e96150caf6c2e412fa3123a78c'] = 'Enable count down clock';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_9e3b95d7c76b34fc36feceba25606caf'] = 'Display title';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_254f642527b45bc260048e30704edb39'] = 'Configuration';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_b20c2b0f4bb2c049ec080151b6322544'] = 'Hook to';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_d2679b3aa8ca60a149888dd58c7d148b'] = 'Default hook';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_678314871893087a13885397b9359d70'] = ' = Default hook';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_417f94eb083c686e9adace11c382cbaa'] = 'Put {hook h=\'displayMegaMenu\'} on tpl file where you want to display the megamenu';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_9c1816d94b21bcc4014605193aaa2e9c'] = 'Submenu transition effect';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_7a1920d61156abc05a60135aefe8bc67'] = 'Default';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_265eea5b45c01587fca2ac8d73cf7d91'] = 'Slide down';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_cb7c3f14014406b90b14f6ec63b9c42c'] = 'Scale down';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_668857a25768ba031dcb062e53e3f8be'] = 'Fade in up';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_f5ca4abce85e2dddb0342d0bae3a7270'] = 'Zoom In';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_b55ac0e88683c9905df73b4f8d2f1c0f'] = 'Direction mode';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_3a3f1cf30e8078032ec76a5ea7075b34'] = 'Auto detect LTR or RTL';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_3e35661f311d49f66eccb1bc2ea4de46'] = 'LTR';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_efe01da942ed68b700b911f5a1b131a7'] = 'RTL';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_61f51aeeeb6012edfe39e1280290b586'] = 'Mobile menu type';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_c8df43648942ec3a9aec140f07f47b7c'] = 'Floating';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_764ff8d94d40c2ecfca7141e7451aa23'] = 'Full screen';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_2fa0d3cf7d808e682832cf1b64f68288'] = 'Thumbnail image type';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_3558979e4ac907db936a4caf9b38bb95'] = 'Include sub-categories';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_034d61901e03810153458d8fd9ee0e32'] = 'Enable Sticky menu';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_eca6891198a19670c4caefb49a8272d2'] = 'Hide sticky menu on mobile';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_150f2f0095524e186332edc6a42bdc17'] = 'Click on menu text to open its submenu';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_833fa5ca879c27de92eb6f9b2edbfe6b'] = 'Apply for mobile only';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_e4978520c0a7db22d476049fc48a2811'] = 'Show vertical menu icon on mobile';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_4dcba203e12a944fd99c17b3df6019d1'] = 'Display active menu item';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_09cdd6a7321c64bae05b8cca859f1461'] = 'Enable cache';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_5f00c519230bb042f8b9a4b0c291fba3'] = 'Cache lifetime';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_6a7e73161603d87b26a8eac49dab0a9c'] = 'Hours';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_d4d0ee9985bf14169e809b164524b0b0'] = 'Layout type';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_b188fdc8fbf2d384eb42079bdf92438e'] = 'Layout 1';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_896b004b0000eb87455719ab8305540f'] = 'Layout 2';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_5158e7182521be6e4f63ed2ddcdbeff9'] = 'Layout 3';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_5b0c56d71a5e571c9dfcb14658238ec1'] = 'Layout 4';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_495211a35a31e2216de73afe812a227e'] = 'Layout 5';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_16bf11530bc42fe5fad63a29cc456561'] = 'Heading font';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_857cb35a9382f11dac28b9d811455085'] = 'Use default font of your theme or select a Google font from the list';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_fd1c87ab22930765490fd537abfd719a'] = 'Heading font size';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_f530355f6159150fe5ab070472c164f4'] = 'General text font';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_94cd30584ac9303f44905f69bf7aa11b'] = 'Title submenu font size';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_1aec5909a0a51e1412ec99e87b2543b0'] = 'General text font size';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_ecc1376febdbaf4eb985d4885b6aaef1'] = 'Menu background';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_c541248912bfebcfa4bc75f59df6be41'] = 'Menu text color';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_c1e4a52685d5f2a8a8405ec14a6d837e'] = 'Menu text hover';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_ad5f165402aa9097721ea82804acf11b'] = 'Menu background hover';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_ceb2fbe7f1354d42afe52a3e019cc984'] = 'Sub-menu background';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_a5c824ab7b791821e4821236f8064158'] = 'Sub-menu title';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_8c97c96d883731fb5c65225111090746'] = 'Sub-menu text color';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_c2c2e915af5b7dbe47dc3246132217d3'] = 'Sub-menu link hover';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_75014e1737b7711eb05248ab48893155'] = 'Background menu bar on mobile';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_c22b486340fba45bff1e207374def690'] = 'Color menu bar on mobile';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_1c2a4782352d563174cd209b564faecd'] = 'Display shopping cart';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_f6d93cc65379ebf5f2fcb29747e091e2'] = 'Not recommended! For advanced users only. Menu can be broken when this option is enabled (especially on custom theme), You are required to have HTML/CSS knowledge to refine the issues. Please understand this is out of free support as it depends on your theme';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_8a47d9a0fc3d6c891d992308d486ac81'] = 'Display search';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_12ba23c60278a227ab76ed2902d31818'] = 'Not recommended! For default search module and advanced users only. Menu can be broken when this option is enabled (especially on custom theme), You are required to have HTML/CSS knowledge to refine the issues. Please understand this is out of free support as it depends on your theme';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_525736a04a1410119f2e4d42f06982ef'] = 'Open searchbox by default';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_d84dd66a1934224777c516c5d6543d99'] = 'Display user info links';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_45879c07f04dd122242168f6d742b357'] = 'Custom HTML text';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_eba7393526afaf1836ba1451af0fa021'] = '12/12 (Full)';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_adc67b5dad49a116df3fd03044119c5d'] = 'Delete image successfull';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_f6fefe344352f0815e6f53ad8f97ae76'] = 'Item deleted';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_08c9975e2e9fb8c1a954c73196a9d2bb'] = 'Item duplicated';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_45b832897251ba1b7b98d00b277ae136'] = 'Can not duplcate item. An unknown problem happened';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_180641b777082af315e11f11136ef62a'] = 'Cache cleared';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_93cbeaa38add6ac51a2c565146ba111b'] = 'Menu was successfully imported. This page will be reloaded in 3 seconds';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_c986f2e82ba2d956bd3a5df143fc29e5'] = 'Configuration was successfully reset. This page will be reloaded in 3 seconds';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_0a5fa53f3f20f67f98bd6c3b16df059d'] = 'is required';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_248336101b461380a4b2391a7625493d'] = 'Saved';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_53308a8204a5f5c9eac22f857c7a0f7d'] = 'Unknown error happens';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_7bb83623723e351067bfb431b5428428'] = 'Object is empty';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_dcf3bf538d394728706dbc710865d01b'] = 'Field is not valid';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_e902dc3f8a7593457f54ef84f72844ba'] = 'Upload file cannot be large than 100MB';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_df02b8ac4dc8f7ec5a0b1364a911b64b'] = 'File name already exists. Try to rename the file and upload again';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_ed03b3ac2f9dc77202649d1cd6c094c6'] = 'Cannot upload file';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_7cc92687130ea12abb80556681538001'] = 'An error occurred during the image upload process.';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_c7d3d5ef28a517e88bd85cbd2b5a13fc'] = 'Image deleted';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_41e62dd32e8ad4c8050b561f173a12e1'] = 'Cannot delete the item due to an unknown technical problem';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_998b344cff693ad388a14ba89b1523c7'] = 'is invalid';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_b8b3ae1bf635742667e9f3f55dc7e646'] = 'Bubble text cannot be longer than 50 characters';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_a464ea8d48572d8f0e5a260c55a0178a'] = 'Bubble alert text color is required';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_bba4d9a657b10e609bd722a5142eb16b'] = 'Bubble alert background color is required';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_deb4ef4d18b545ba2a3a3fd5bc155e5f'] = 'Custom link is required';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_d8a8a612dde9d851e8e33bb8eadea0e1'] = 'Please select a category';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_240213c123e4ef2ba0a5283068e26605'] = 'Please select a manufacturer';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_3adaf6c593f1ea64d6468e4fd2fc003e'] = 'Please select a supplier';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_3f54e98cb43cb017376763427e908485'] = 'CMS page is required';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_b5ce00d7b254ecbb2c242cf399061c15'] = 'Link type is not valid';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_e234b18943bbedcc4afc6d30a45e989e'] = 'Sub menu width must be between 10 and 100';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_84b755bdeb3f6df297b84db26746912b'] = 'HTML/Text is required';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_01e0f317de80a5d8b39573414054b976'] = 'CMS pages is required';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_e89f4aeecaa6fb0d894618e97bcab03b'] = 'Categories is required';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_1de3f20776f1798746ee8a0a8ebf63e0'] = 'Manufacturers is required';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_d42645f928d348c60ee0025665e4c909'] = 'Suppliers is required';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_0e14bfaec163534638152aa11ec70ad4'] = 'Image is required';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_71074f1d700fdd3e91e17d53e44029e2'] = 'Block type is not valid';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_d49f891a5c68a68ed57394fde9e4561b'] = 'Please enter product ids';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_9b2304e077bc5dc294ea2201ef1fd6ee'] = 'Product count required';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_6be2c5b5f1d095a90e2c37764f452077'] = 'Product Ids is not valid. Please enter product IDs separated by a comma (,)';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_1067c3f730599619764fce05481566ce'] = 'Product count is not valid';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_5fd13c2b89a6eaaa4614bfe258f6c40f'] = 'Zip file seems to be broken';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_3aecef48e0417ca1cc03066a3f16171d'] = 'Zip file doesn\'t exist';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_078b9a20061a21f2b47c1a4b6844df66'] = 'Menu-Info.xml doesn\'t exist';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_f55ab24ab5c393461bca98c6642bac32'] = 'Cannot open zip file. It might be broken or damaged';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_504dc9d91612cd4e53eaa4020df1c36e'] = 'Cannot extract zip data';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_ee7151c4fef893a18e167c6807fb0535'] = 'Neither Data.xml nor Config.xml exists';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_55059225fd78e48ab8552b8c6fff20ca'] = 'Cannot create config xml file.';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_0c32ea41eb876db2abb6db9c5b89006e'] = 'Cannot create data xml file.';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_fd2994c6870685826485927e4472dc57'] = 'Cannot create Menu-Info.xml';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_1031371f906a92891140f384d04b3421'] = 'An error occurred during the archive generation';
|
||||
$_MODULE['<{ets_megamenu}prestashop>form_39acea19424caebfa3e95fd467ac6e11'] = 'Select/Unselect all';
|
||||
$_MODULE['<{ets_megamenu}prestashop>form_ec9da5db23d32f44f4031df5bd98cb11'] = 'Browse icon';
|
||||
$_MODULE['<{ets_megamenu}prestashop>form_a6a3c692b271fcc9c06e1758590384cc'] = 'Clear menu cache';
|
||||
$_MODULE['<{ets_megamenu}prestashop>form_63f57742717e6101a066d7275360332d'] = 'Uploaded image:';
|
||||
$_MODULE['<{ets_megamenu}prestashop>form_687cbf3e103f4ec4facecab72e3008a4'] = 'Click to see full size image';
|
||||
$_MODULE['<{ets_megamenu}prestashop>form_a8d009b33e7c67b45cf2f14fe6d419ad'] = 'Only reset configuration to default. Menu data won\'t be lost';
|
||||
$_MODULE['<{ets_megamenu}prestashop>form_526d688f37a86d3c3f27d0c5016eb71d'] = 'Reset';
|
||||
$_MODULE['<{ets_megamenu}prestashop>form_16bfbf9c462762cf1cba4134ec53c504'] = 'Loading';
|
||||
$_MODULE['<{ets_megamenu}prestashop>form_4e11db406c6c9f234fe8579cc9bc5ef6'] = 'Saving';
|
||||
$_MODULE['<{ets_megamenu}prestashop>form_0db377921f4ce762c62526131097968f'] = 'General';
|
||||
$_MODULE['<{ets_megamenu}prestashop>form_1afa74da05ca145d3418aad9af510109'] = 'Design';
|
||||
$_MODULE['<{ets_megamenu}prestashop>form_80a77a0d27c15659831d0d50bbed3ab0'] = 'Extra features';
|
||||
$_MODULE['<{ets_megamenu}prestashop>admin-form_d3d2e617335f08df83599665eef8a418'] = 'Close';
|
||||
$_MODULE['<{ets_megamenu}prestashop>admin-form_c3bf447eabe632720a3aa1a7ce401274'] = 'Open';
|
||||
$_MODULE['<{ets_megamenu}prestashop>admin-form_f2a6c498fb90ee345d997f888fce3b18'] = 'Delete';
|
||||
$_MODULE['<{ets_megamenu}prestashop>admin-form_7dce122004969d56ae2e0245cb754d35'] = 'Edit';
|
||||
$_MODULE['<{ets_megamenu}prestashop>admin-form_474c1219b0e41415e1115456a362ef4d'] = 'Delete this item';
|
||||
$_MODULE['<{ets_megamenu}prestashop>admin-form_0164b35f3cbc5cbf9bf58abeb4bc14df'] = 'Add new menu';
|
||||
$_MODULE['<{ets_megamenu}prestashop>admin-form_8a165af354761ba57a7f9413cf7b010a'] = 'Edit menu';
|
||||
$_MODULE['<{ets_megamenu}prestashop>admin-form_4220caf81d84096b21f1c382d9f2104c'] = 'Add new column';
|
||||
$_MODULE['<{ets_megamenu}prestashop>admin-form_c3e7864531017869d04d401e5771cde4'] = 'Edit column';
|
||||
$_MODULE['<{ets_megamenu}prestashop>admin-form_137e8451b75e1e21b42f174538cd5cb0'] = 'Delete this column';
|
||||
$_MODULE['<{ets_megamenu}prestashop>admin-form_4fd76a4441a519f2a61252085d438b0f'] = 'Delete this block';
|
||||
$_MODULE['<{ets_megamenu}prestashop>admin-form_d4bde2ef599c3bc55a57e23427eabbd2'] = 'Edit this block';
|
||||
$_MODULE['<{ets_megamenu}prestashop>admin-form_bd6b819a39fdcd26de086e9f352c1fa0'] = 'Add new block';
|
||||
$_MODULE['<{ets_megamenu}prestashop>admin-form_ed75712b0eb1913c28a3872731ffd48d'] = 'Duplicate';
|
||||
$_MODULE['<{ets_megamenu}prestashop>admin-form_a2b8f8667e7bb8cb9ea87526c637c93d'] = 'Duplicate this menu';
|
||||
$_MODULE['<{ets_megamenu}prestashop>admin-form_a2c3cdca64334e4f378d97ff72608b36'] = 'Duplicate this column';
|
||||
$_MODULE['<{ets_megamenu}prestashop>admin-form_667398242bf9a519ce518c772bb34e1f'] = 'Duplicate this block';
|
||||
$_MODULE['<{ets_megamenu}prestashop>admin-form_18d043a5ec966d214566f4dda8d31c01'] = 'Image is invalid';
|
||||
$_MODULE['<{ets_megamenu}prestashop>admin-form_f6c4ed278c3f8a43a2b4913a1d61c6d5'] = 'Add menu';
|
||||
$_MODULE['<{ets_megamenu}prestashop>admin-form_c93e7ab5c20aab9f777ce2ac2655c700'] = 'Preview in tab mode';
|
||||
$_MODULE['<{ets_megamenu}prestashop>admin-form_5c6ba25104401c9ee0650230fc6ba413'] = 'Tab';
|
||||
$_MODULE['<{ets_megamenu}prestashop>admin-form_d0c92a6168f5a6301e8c75cc787a9c10'] = 'Preview in list mode';
|
||||
$_MODULE['<{ets_megamenu}prestashop>admin-form_4ee29ca12c7d126654bd0e5275de6135'] = 'List';
|
||||
$_MODULE['<{ets_megamenu}prestashop>admin-form_3e35661f311d49f66eccb1bc2ea4de46'] = 'LTR';
|
||||
$_MODULE['<{ets_megamenu}prestashop>admin-form_efe01da942ed68b700b911f5a1b131a7'] = 'RTL';
|
||||
$_MODULE['<{ets_megamenu}prestashop>admin-form_f8d1d022d3f7645b4b0dfe4f6de3efbc'] = 'Import/Export';
|
||||
$_MODULE['<{ets_megamenu}prestashop>admin-form_f4f70727dc34561dfde1a3c529b6205c'] = 'Settings';
|
||||
$_MODULE['<{ets_megamenu}prestashop>admin-form_deba57aebf40e70cb31644eb6ee69498'] = 'Export menu content';
|
||||
$_MODULE['<{ets_megamenu}prestashop>admin-form_19976a024d14b37b816064a67c64732e'] = 'Export menu';
|
||||
$_MODULE['<{ets_megamenu}prestashop>admin-form_b5112dd068d158561df29735df378eef'] = 'Export all menu data including images, text and configuration';
|
||||
$_MODULE['<{ets_megamenu}prestashop>admin-form_b8c534fb8ac5166939ccce4525eb148f'] = 'Import menu data';
|
||||
$_MODULE['<{ets_megamenu}prestashop>admin-form_4f92db9fb554ed1d896ef872346e345f'] = 'Menu data package';
|
||||
$_MODULE['<{ets_megamenu}prestashop>admin-form_7726d9dd8129ac1ed3eaf1c5da96ae28'] = 'Clear all menus before importing';
|
||||
$_MODULE['<{ets_megamenu}prestashop>admin-form_377119d4cf2d6af97ac466d2954d6e77'] = 'Importing data';
|
||||
$_MODULE['<{ets_megamenu}prestashop>admin-form_20b0d75c1373adc14873b7b41a495602'] = 'Import menu';
|
||||
$_MODULE['<{ets_megamenu}prestashop>admin-icon_d3d2e617335f08df83599665eef8a418'] = 'Close';
|
||||
$_MODULE['<{ets_megamenu}prestashop>admin-icon_ec9da5db23d32f44f4031df5bd98cb11'] = 'Browse icon';
|
||||
$_MODULE['<{ets_megamenu}prestashop>block-product-item_f2a6c498fb90ee345d997f888fce3b18'] = 'Delete';
|
||||
$_MODULE['<{ets_megamenu}prestashop>demo_758c9dd89c0eda9ec21eab9f2d0ce195'] = 'Notice: this is just for back office preview!';
|
||||
$_MODULE['<{ets_megamenu}prestashop>demo_1c56f69b46bbf40a0a692af3edf2cd1b'] = 'Hello, thank you for checking the demo back office of [1]Mega Menu PRO[/1]';
|
||||
$_MODULE['<{ets_megamenu}prestashop>demo_5afad9d74d1a9aceac2a4bffabc45388'] = 'We would like to inform you that this \"Back office demo\" is just for demonstrating and help you have an overview of the module is features.';
|
||||
$_MODULE['<{ets_megamenu}prestashop>demo_1ac1e88c1a9425cc3f02fdca65ee5c41'] = 'All the changes you make within this \"Back office demo\" WON NOT be saved [1] and WON NOT be applied to the front office.';
|
||||
$_MODULE['<{ets_megamenu}prestashop>demo_69991379ca4f47f42739ad3fb6962e78'] = 'Yes, I understand. That is ok!';
|
||||
$_MODULE['<{ets_megamenu}prestashop>demo_fd05df0769dd8d5dd514d464d3e50d34'] = 'No, take me to front office!';
|
||||
$_MODULE['<{ets_megamenu}prestashop>item-block_c613629aef5762bb8c3f646a4035b7fd'] = 'Delete block';
|
||||
$_MODULE['<{ets_megamenu}prestashop>item-block_f2a6c498fb90ee345d997f888fce3b18'] = 'Delete';
|
||||
$_MODULE['<{ets_megamenu}prestashop>item-block_dbe9af535d36976a3fb4158761b21e55'] = 'Duplicate block';
|
||||
$_MODULE['<{ets_megamenu}prestashop>item-block_ed75712b0eb1913c28a3872731ffd48d'] = 'Duplicate';
|
||||
$_MODULE['<{ets_megamenu}prestashop>item-block_4f358ab0d7f1d9623bdcad1c346bd0f6'] = 'Edit block';
|
||||
$_MODULE['<{ets_megamenu}prestashop>item-block_7dce122004969d56ae2e0245cb754d35'] = 'Edit';
|
||||
$_MODULE['<{ets_megamenu}prestashop>item-column_f722b0bbb0ecaa598bf84b6568ac826b'] = 'Delete column';
|
||||
$_MODULE['<{ets_megamenu}prestashop>item-column_f2a6c498fb90ee345d997f888fce3b18'] = 'Delete';
|
||||
$_MODULE['<{ets_megamenu}prestashop>item-column_53f6b8619350888a722e39b25414b909'] = 'Duplicate column';
|
||||
$_MODULE['<{ets_megamenu}prestashop>item-column_ed75712b0eb1913c28a3872731ffd48d'] = 'Duplicate';
|
||||
$_MODULE['<{ets_megamenu}prestashop>item-column_c3e7864531017869d04d401e5771cde4'] = 'Edit column';
|
||||
$_MODULE['<{ets_megamenu}prestashop>item-column_7dce122004969d56ae2e0245cb754d35'] = 'Edit';
|
||||
$_MODULE['<{ets_megamenu}prestashop>item-column_2ff8071bcd15a31f9a743f1b06d0d00f'] = 'Add block';
|
||||
$_MODULE['<{ets_megamenu}prestashop>item-menu_2b5ad90c840d138033f8e9641b17e7b7'] = 'Delete menu';
|
||||
$_MODULE['<{ets_megamenu}prestashop>item-menu_f2a6c498fb90ee345d997f888fce3b18'] = 'Delete';
|
||||
$_MODULE['<{ets_megamenu}prestashop>item-menu_630e6ef08d01ef5cb9e3397e8db5e994'] = 'Duplicate menu';
|
||||
$_MODULE['<{ets_megamenu}prestashop>item-menu_ed75712b0eb1913c28a3872731ffd48d'] = 'Duplicate';
|
||||
$_MODULE['<{ets_megamenu}prestashop>item-menu_8a165af354761ba57a7f9413cf7b010a'] = 'Edit menu';
|
||||
$_MODULE['<{ets_megamenu}prestashop>item-menu_d3d2e617335f08df83599665eef8a418'] = 'Close';
|
||||
$_MODULE['<{ets_megamenu}prestashop>item-menu_67b766b66c1b187ef3ad796aabf1753b'] = 'Add tab';
|
||||
$_MODULE['<{ets_megamenu}prestashop>item-menu_7dce122004969d56ae2e0245cb754d35'] = 'Edit';
|
||||
$_MODULE['<{ets_megamenu}prestashop>item-menu_b61b8f498d489f2e2b916b887b7062bc'] = 'Add column';
|
||||
$_MODULE['<{ets_megamenu}prestashop>item-tab_a03ce9e73e3b0b18331ef0dcf4f410e1'] = 'Delete tab';
|
||||
$_MODULE['<{ets_megamenu}prestashop>item-tab_f2a6c498fb90ee345d997f888fce3b18'] = 'Delete';
|
||||
$_MODULE['<{ets_megamenu}prestashop>item-tab_b04cb66e24ece03f1d36dbc09a2945ea'] = 'Duplicate tab';
|
||||
$_MODULE['<{ets_megamenu}prestashop>item-tab_ed75712b0eb1913c28a3872731ffd48d'] = 'Duplicate';
|
||||
$_MODULE['<{ets_megamenu}prestashop>item-tab_2da9b93934e51331be3c8ccf3428e001'] = 'Edit tab';
|
||||
$_MODULE['<{ets_megamenu}prestashop>item-tab_7dce122004969d56ae2e0245cb754d35'] = 'Edit';
|
||||
$_MODULE['<{ets_megamenu}prestashop>item-tab_d3d2e617335f08df83599665eef8a418'] = 'Close';
|
||||
$_MODULE['<{ets_megamenu}prestashop>item-tab_b61b8f498d489f2e2b916b887b7062bc'] = 'Add column';
|
||||
$_MODULE['<{ets_megamenu}prestashop>megamenu_b61541208db7fa7dba42c85224405911'] = 'Menu';
|
||||
$_MODULE['<{ets_megamenu}prestashop>menu-html_b61541208db7fa7dba42c85224405911'] = 'Menu';
|
||||
$_MODULE['<{ets_megamenu}prestashop>menu-html_0557fa923dcee4d0f86b1409f5c2167f'] = 'Back';
|
||||
$_MODULE['<{ets_megamenu}prestashop>product-list-17_c91e4ee170226d66e90f99ba917e4c20'] = 'Quick view';
|
||||
$_MODULE['<{ets_megamenu}prestashop>product-list-17_8a48e3d7293fc9e2f774581231418412'] = 'No product available';
|
||||
$_MODULE['<{ets_megamenu}prestashop>product-list-mini_8a48e3d7293fc9e2f774581231418412'] = 'No product available';
|
||||
$_MODULE['<{ets_megamenu}prestashop>product-list_c91e4ee170226d66e90f99ba917e4c20'] = 'Quick view';
|
||||
$_MODULE['<{ets_megamenu}prestashop>product-list_2d0f6b8300be19cf35e89e66f0677f95'] = 'Add to cart';
|
||||
$_MODULE['<{ets_megamenu}prestashop>product-list_03c2e7e41ffc181a4e84080b4710e81e'] = 'New';
|
||||
$_MODULE['<{ets_megamenu}prestashop>product-list_bb63f16d5ebfcfa8a651642a7bb2ea5c'] = 'Sale!';
|
||||
$_MODULE['<{ets_megamenu}prestashop>product-list_03de921a8ea82897e13d33d66c28b4db'] = 'Online only';
|
||||
$_MODULE['<{ets_megamenu}prestashop>product-list_ca2bf12169883f4982d8fe34b7e3c618'] = 'Reduced price!';
|
||||
$_MODULE['<{ets_megamenu}prestashop>product-list_69d08bd5f8cf4e228930935c3f13e42f'] = 'In Stock';
|
||||
$_MODULE['<{ets_megamenu}prestashop>product-list_b55197a49e8c4cd8c314bc2aa39d6feb'] = 'Out of stock';
|
||||
$_MODULE['<{ets_megamenu}prestashop>product-list_cb3c718c905f00adbb6735f55bfb38ef'] = 'Product available with different options';
|
||||
$_MODULE['<{ets_megamenu}prestashop>product-list_216adaf4e98dc62ec3abeab51b9fc57f'] = 'Please select at least one product';
|
||||
$_MODULE['<{ets_megamenu}prestashop>product-list_90723749917a82bf3ff8a73247d32ffb'] = 'You cannot add more than %d product(s) to the product comparison';
|
||||
$_MODULE['<{ets_megamenu}prestashop>product-list_8a48e3d7293fc9e2f774581231418412'] = 'No product available';
|
||||
331
modules/ets_megamenu/translations/en.php
Normal file
@@ -0,0 +1,331 @@
|
||||
<?php
|
||||
|
||||
global $_MODULE;
|
||||
$_MODULE = array();
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_968c8ef65d5d5d87254964b78a2e02f5'] = 'Mega Menu PRO';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_b04f52f3454c7b0d75cdd09314eb0b52'] = 'Visual drag and drop mega menu builder';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_fc029308351f31f8fe047451beb1835b'] = 'THEME DEFAULT FONT';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_8a165af354761ba57a7f9413cf7b010a'] = 'Edit menu';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_f6c4ed278c3f8a43a2b4913a1d61c6d5'] = 'Add menu';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_c9cc8cce247e49bae79f15173ce97354'] = 'Save';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_02674a4ef33e11c879283629996c8ff8'] = 'Direction';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_c1b5fa03ecdb95d4a45dd1c40b02527f'] = 'Horizontal';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_06ce2a25e5d12c166a36f654dbea6012'] = 'Vertical';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_782ee9a18759cfa9ee20ed12a8bacce9'] = 'Vertical menu text color';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_6f91f9164ea25b4a4b1b00d4e9395154'] = 'Vertical menu background color';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_badc91809c2dc1fecabe778ecfc3bd9f'] = 'Always open vertical menu';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_c2e4b58b319f619175be628535cf6a69'] = 'Only use for desktop';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_93cba07454f06a4a960172bbd6e2a435'] = 'Yes';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_bafd7322c6e97d25b6299b5d6fe8920b'] = 'No';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_0cdbc3ce6753e2083253ef0ff3753347'] = 'Remove border';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_2641b32b86cfe616962d782685363198'] = 'Menu item width';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_4ade9e3bb42a3ad0b29de42915e05e04'] = 'Use \"px\" or \"%\" or \"vw\". Eg: \"20%\" or \"230px\" or \"80vw\"';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_62b6172b996ec621eee5722af8a1624b'] = 'Tab item width';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_231131cf0e206f235339643f8350739a'] = 'Menu link type';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_a7140e841df723ac623f174ba5aa088a'] = 'Custom link';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_622f3c75de9f3481ffc58c1f292c1c2b'] = 'CMS page';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_bbaff12800505b22a853e8b7f4eb6a22'] = 'Contact';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_3adbdb3ac060038aa0e6e6c138ef9873'] = 'Category';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_c0bd7654d5b278e65f21cf4e9153fdb4'] = 'Manufacturer';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_ec136b444eede3bc85639fac0dd06229'] = 'Supplier';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_8cf04a9734132302f96da8e113e80ce5'] = 'Home';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_b78a3223503896721cca1303f776159b'] = 'Title';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_ccff5fe10a335f4884d54e146e68b80d'] = 'Menu icon font';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_a579ead35787d34de93658bab29b8de5'] = 'Use font awesome class. Eg: fa-bars, fa-plus, ...';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_81a36689f3786c62f31b872020afc9dc'] = 'Menu icon image';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_67c0dcafa33f4e672d2b1fa59fde1cd3'] = 'Recommended size:20 x 20';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_546752887fe72e4c110341f2a780e929'] = 'Submenu alignment';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_9128ab2a4d2b92815cd4db44baab7077'] = '(LTR layout)';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_06b9281e396db002010bde1de57262eb'] = 'Auto';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_945d5e233cf7d6240f6b783b36a374ff'] = 'Left';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_92b09c7c48c520c3c55e497875da437c'] = 'Right';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_f5df0297bedf69afcbe26b8ab7805c9e'] = 'Submenu alignment is reversed on RTL layout automatically';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_22e10f4af52114387f314fee00020250'] = 'Display tabs in full width';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_358f993f450ec503a6ddf8915dc014ea'] = 'Sub menu width';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_3b26b2a6e99c6e75c9f7a6749b0652af'] = 'Use \"px\" or \"%\" or \"vw\". Eg: \"100%\" or \"100px\" or \"80vw\"';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_95ff0dbd3f00cfcd9ee25dadae9911c0'] = 'Custom class';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_9a13acfbbe8803801f8f291919352eee'] = 'Bubble alert text';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_1ed3f9c6f7037274596ab54ea292d5a7'] = 'New, Sale, Hot... Leave blank if you do not want to have a bubble alert for this menu';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_fc1c9ff6972ea2b89de122633d9a9aaf'] = 'Bubble alert text color';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_423fadd8b2c94c6218a24c87117e7418'] = 'Bubble alert background color';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_69ee1afc9b3d02e53d9f733c1993b568'] = 'Background image';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_70c24c23b9c5312281659ef79d6874bd'] = 'Position background';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_4f1f6016fc9f3f2353c0cc7c67b292bd'] = 'Center';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_a4ffdcf0dc1f31b9acaf295d75b51d00'] = 'Top';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_d3708546a929dfcf66eaeaba794486eb'] = 'Top right';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_a4d0d101d6a34bf80ffeee601c3ff84a'] = 'Top left';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_2ad9d63b69c4a10a5cc9cad923133bc4'] = 'Bottom';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_b67554192c50f4f6a4c1bd4797f6c3f8'] = 'Bottom left';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_5968e3c37145f57587afcba727d2b120'] = 'Bottom right';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_75d6ef775a2104c57c52706d869a86be'] = 'Open link in new tab';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_06f1ac65b0a6a548339a38b348e64d79'] = 'Sort order';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_00d23a76e43b46dae9ec7aa9dcbebb32'] = 'Enabled';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_2da9b93934e51331be3c8ccf3428e001'] = 'Edit tab';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_67b766b66c1b187ef3ad796aabf1753b'] = 'Add tab';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_c90a53528da75f001e1d69dd844f0993'] = 'Tab icon font';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_840ec47f8515d48297c88a335e872fb3'] = 'Use font awesome class. Ex: fa-bars, fa-plus, ...';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_3f30215d52c4851b8f06c8f1c7a0bd22'] = 'Tab icon image';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_4d66066ad0f21b108844607a247f1112'] = 'Tab content width';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_2b5f489e77e74559e97bd43e979a4337'] = 'Display tab content from top';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_b61541208db7fa7dba42c85224405911'] = 'Menu';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_c3e7864531017869d04d401e5771cde4'] = 'Edit column';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_b61b8f498d489f2e2b916b887b7062bc'] = 'Add column';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_d83778cd6dc223fd79bb07d598d6223c'] = 'Column width size';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_e4c38d6d45baf080943d323dd51a2ce8'] = 'Break';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_aa5f289085a24b28d52c9113555e3b8b'] = 'Break from this column to new line';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_5c6ba25104401c9ee0650230fc6ba413'] = 'Tab';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_4f358ab0d7f1d9623bdcad1c346bd0f6'] = 'Edit block';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_2ff8071bcd15a31f9a743f1b06d0d00f'] = 'Add block';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_b5a812dff3c33b63cf77f0ce007da42e'] = 'Block type';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_8b407e232af57b6d8579d7ed0626c091'] = 'Text/Html';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_be53a0541a6d36f6ecb879fa2c584b08'] = 'Image';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_068f80c7519d0528fb08e82137a72131'] = 'Products';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_1976d7f704de389d9fe064e08ea35b2d'] = 'Column';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_cf23cd9379acd73edb90d1076efc862c'] = 'Title link';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_5d29e81352b150a3e306eb985f1735a8'] = 'Leave blank if you do not want to add a link to block title';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_2377be3c2ad9b435ba277a73f0f1ca76'] = 'Manufacturers';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_01fda57aa6c7e9f07f5aa36b108e95cb'] = 'Order by';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_809ab7c071cedac33b6ee810e32fb5f0'] = 'Name A-Z';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_d443ba2c0e31bbf213c36dfe1f81ac74'] = 'Name Z-A';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_f66306bc4b2f9bac47088451fc0bb476'] = 'Newest manufacturer first';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_3319557c87587792f7907b4a5881a095'] = 'Display manufacturers image';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_d02b2fc8af1142137d63860b0b638e7e'] = 'Display manufacturers name';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_c276bdf15015f63a89483dbbbfe6edd9'] = 'Manufacturers per row';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_1814d65a76028fdfbadab64a5a8076df'] = 'Suppliers';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_bae05f8f16fa0f42562df90f6713237e'] = 'Newest supplier first';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_6f34c552ec2167dff966202ccc68186b'] = 'Display suppliers image';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_10dc3660f72acc9b05c8742f2c8d301a'] = 'Display suppliers name';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_2bc7519ec199311e82717bef59ef6450'] = 'Suppliers per row';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_af1b98adf7f686b84cd0b443e022b7a0'] = 'Categories';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_63ce794099274c72d3844c1296a92db0'] = 'Default order';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_0bb450ed086ce232068db7852f99ded2'] = 'Newest category first';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_ccb48f393023eee753f69208f038e0f3'] = 'CMS pages';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_2386dbe21fd6472485a7e4a871160217'] = 'HTML/Text content';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_9ce38727cff004a058021a6c7351a74a'] = 'Image link';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_66110e941b9796cdaf57c8b1aadb6739'] = 'Leave blank if you do not want to add a link to image';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_3d19aea4e2d382e85165bbf71cef1e05'] = 'Product type';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_9ff0635f5737513b1a6f559ac2bff745'] = 'New products';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_7f55dc18fd28be03bea9991647014e92'] = 'Popular products';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_8af828f302b91d1f905dc35acc43efaa'] = 'Special products';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_01f7ac959c1e6ebbb2e0ee706a7a5255'] = 'Best sellers';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_43f03332c7f75a3056cfa2e29bda6bba'] = 'Specific products';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_437ac95a91364eb49587af5e146b1745'] = 'Search products';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_5221812aefa6842bf09217ee8dc0fea8'] = 'Search product by ID, name or reference';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_3e22403f8e252c77a37d5262ccb45159'] = 'Product count';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_3812464e9c462762cb7f1b1f3a8f0e30'] = 'item(s)';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_dbb7eaea6542941545255af0c27f0eaa'] = 'Enable product description';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_d4ea25e96150caf6c2e412fa3123a78c'] = 'Enable count down clock';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_9e3b95d7c76b34fc36feceba25606caf'] = 'Display title';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_254f642527b45bc260048e30704edb39'] = 'Configuration';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_b20c2b0f4bb2c049ec080151b6322544'] = 'Hook to';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_d2679b3aa8ca60a149888dd58c7d148b'] = 'Default hook';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_678314871893087a13885397b9359d70'] = 'Custom hook';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_417f94eb083c686e9adace11c382cbaa'] = 'Put {hook h=\'displayMegaMenu\'} on tpl file where you want to display the megamenu';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_9c1816d94b21bcc4014605193aaa2e9c'] = 'Submenu transition effect';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_7a1920d61156abc05a60135aefe8bc67'] = 'Default';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_265eea5b45c01587fca2ac8d73cf7d91'] = 'Slide down';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_cb7c3f14014406b90b14f6ec63b9c42c'] = 'Scale down';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_668857a25768ba031dcb062e53e3f8be'] = 'Fade in up';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_f5ca4abce85e2dddb0342d0bae3a7270'] = 'Zoom In';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_b55ac0e88683c9905df73b4f8d2f1c0f'] = 'Direction mode';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_3a3f1cf30e8078032ec76a5ea7075b34'] = 'Auto detect LTR or RTL';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_3e35661f311d49f66eccb1bc2ea4de46'] = 'LTR';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_efe01da942ed68b700b911f5a1b131a7'] = 'RTL';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_61f51aeeeb6012edfe39e1280290b586'] = 'Mobile menu type';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_c8df43648942ec3a9aec140f07f47b7c'] = 'Floating';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_764ff8d94d40c2ecfca7141e7451aa23'] = 'Full screen';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_2fa0d3cf7d808e682832cf1b64f68288'] = 'Thumbnail image type';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_3558979e4ac907db936a4caf9b38bb95'] = 'Include sub-categories';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_034d61901e03810153458d8fd9ee0e32'] = 'Enable Sticky menu';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_eca6891198a19670c4caefb49a8272d2'] = 'Hide sticky menu on mobile';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_150f2f0095524e186332edc6a42bdc17'] = 'Click on menu text to open its submenu';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_833fa5ca879c27de92eb6f9b2edbfe6b'] = 'Apply for mobile only';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_e4978520c0a7db22d476049fc48a2811'] = 'Show vertical menu icon on mobile';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_4dcba203e12a944fd99c17b3df6019d1'] = 'Display active menu item';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_09cdd6a7321c64bae05b8cca859f1461'] = 'Enable cache';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_5f00c519230bb042f8b9a4b0c291fba3'] = 'Cache lifetime';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_6a7e73161603d87b26a8eac49dab0a9c'] = 'Hours';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_d4d0ee9985bf14169e809b164524b0b0'] = 'Layout type';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_b188fdc8fbf2d384eb42079bdf92438e'] = 'Layout 1';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_896b004b0000eb87455719ab8305540f'] = 'Layout 2';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_5158e7182521be6e4f63ed2ddcdbeff9'] = 'Layout 3';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_5b0c56d71a5e571c9dfcb14658238ec1'] = 'Layout 4';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_495211a35a31e2216de73afe812a227e'] = 'Layout 5';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_16bf11530bc42fe5fad63a29cc456561'] = 'Heading font';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_857cb35a9382f11dac28b9d811455085'] = 'Use default font of your theme or select a Google font from the list';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_fd1c87ab22930765490fd537abfd719a'] = 'Heading font size';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_f530355f6159150fe5ab070472c164f4'] = 'General text font';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_94cd30584ac9303f44905f69bf7aa11b'] = 'Title submenu font size';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_1aec5909a0a51e1412ec99e87b2543b0'] = 'General text font size';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_ecc1376febdbaf4eb985d4885b6aaef1'] = 'Menu background';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_c541248912bfebcfa4bc75f59df6be41'] = 'Menu text color';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_c1e4a52685d5f2a8a8405ec14a6d837e'] = 'Menu text hover';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_ad5f165402aa9097721ea82804acf11b'] = 'Menu background hover';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_ceb2fbe7f1354d42afe52a3e019cc984'] = 'Sub-menu background';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_a5c824ab7b791821e4821236f8064158'] = 'Sub-menu title';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_8c97c96d883731fb5c65225111090746'] = 'Sub-menu text color';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_c2c2e915af5b7dbe47dc3246132217d3'] = 'Sub-menu link hover';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_75014e1737b7711eb05248ab48893155'] = 'Background menu bar on mobile';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_c22b486340fba45bff1e207374def690'] = 'Color menu bar on mobile';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_1c2a4782352d563174cd209b564faecd'] = 'Display shopping cart';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_f6d93cc65379ebf5f2fcb29747e091e2'] = 'Not recommended! For advanced users only. Menu can be broken when this option is enabled (especially on custom theme), You are required to have HTML/CSS knowledge to refine the issues. Please understand this is out of free support as it depends on your theme';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_8a47d9a0fc3d6c891d992308d486ac81'] = 'Display search';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_12ba23c60278a227ab76ed2902d31818'] = 'Not recommended! For default search module and advanced users only. Menu can be broken when this option is enabled (especially on custom theme), You are required to have HTML/CSS knowledge to refine the issues. Please understand this is out of free support as it depends on your theme';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_525736a04a1410119f2e4d42f06982ef'] = 'Open searchbox by default';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_d84dd66a1934224777c516c5d6543d99'] = 'Display user info links';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_45879c07f04dd122242168f6d742b357'] = 'Custom HTML text';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_eba7393526afaf1836ba1451af0fa021'] = '12/12 (Full)';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_adc67b5dad49a116df3fd03044119c5d'] = 'Delete image successfull';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_f6fefe344352f0815e6f53ad8f97ae76'] = 'Item deleted';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_08c9975e2e9fb8c1a954c73196a9d2bb'] = 'Item duplicated';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_45b832897251ba1b7b98d00b277ae136'] = 'Can not duplcate item. An unknown problem happened';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_180641b777082af315e11f11136ef62a'] = 'Cache cleared';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_93cbeaa38add6ac51a2c565146ba111b'] = 'Menu was successfully imported. This page will be reloaded in 3 seconds';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_c986f2e82ba2d956bd3a5df143fc29e5'] = 'Configuration was successfully reset. This page will be reloaded in 3 seconds';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_0a5fa53f3f20f67f98bd6c3b16df059d'] = 'is required';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_248336101b461380a4b2391a7625493d'] = 'Saved';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_53308a8204a5f5c9eac22f857c7a0f7d'] = 'Unknown error happens';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_7bb83623723e351067bfb431b5428428'] = 'Object is empty';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_dcf3bf538d394728706dbc710865d01b'] = 'Field is not valid';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_e902dc3f8a7593457f54ef84f72844ba'] = 'Upload file cannot be large than 100MB';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_df02b8ac4dc8f7ec5a0b1364a911b64b'] = 'File name already exists. Try to rename the file and upload again';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_ed03b3ac2f9dc77202649d1cd6c094c6'] = 'Cannot upload file';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_7cc92687130ea12abb80556681538001'] = 'An error occurred during the image upload process.';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_c7d3d5ef28a517e88bd85cbd2b5a13fc'] = 'Image deleted';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_41e62dd32e8ad4c8050b561f173a12e1'] = 'Cannot delete the item due to an unknown technical problem';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_998b344cff693ad388a14ba89b1523c7'] = 'is invalid';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_b8b3ae1bf635742667e9f3f55dc7e646'] = 'Bubble text cannot be longer than 50 characters';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_a464ea8d48572d8f0e5a260c55a0178a'] = 'Bubble alert text color is required';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_bba4d9a657b10e609bd722a5142eb16b'] = 'Bubble alert background color is required';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_deb4ef4d18b545ba2a3a3fd5bc155e5f'] = 'Custom link is required';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_d8a8a612dde9d851e8e33bb8eadea0e1'] = 'Please select a category';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_240213c123e4ef2ba0a5283068e26605'] = 'Please select a manufacturer';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_3adaf6c593f1ea64d6468e4fd2fc003e'] = 'Please select a supplier';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_3f54e98cb43cb017376763427e908485'] = 'CMS page is required';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_b5ce00d7b254ecbb2c242cf399061c15'] = 'Link type is not valid';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_e234b18943bbedcc4afc6d30a45e989e'] = 'Sub menu width must be between 10 and 100';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_84b755bdeb3f6df297b84db26746912b'] = 'HTML/Text is required';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_01e0f317de80a5d8b39573414054b976'] = 'CMS pages is required';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_e89f4aeecaa6fb0d894618e97bcab03b'] = 'Categories is required';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_1de3f20776f1798746ee8a0a8ebf63e0'] = 'Manufacturers is required';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_d42645f928d348c60ee0025665e4c909'] = 'Suppliers is required';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_0e14bfaec163534638152aa11ec70ad4'] = 'Image is required';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_71074f1d700fdd3e91e17d53e44029e2'] = 'Block type is not valid';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_d49f891a5c68a68ed57394fde9e4561b'] = 'Please enter product ids';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_9b2304e077bc5dc294ea2201ef1fd6ee'] = 'Product count required';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_6be2c5b5f1d095a90e2c37764f452077'] = 'Product Ids is not valid. Please enter product IDs separated by a comma (,)';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_1067c3f730599619764fce05481566ce'] = 'Product count is not valid';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_5fd13c2b89a6eaaa4614bfe258f6c40f'] = 'Zip file seems to be broken';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_3aecef48e0417ca1cc03066a3f16171d'] = 'Zip file doesn\'t exist';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_078b9a20061a21f2b47c1a4b6844df66'] = 'Menu-Info.xml doesn\'t exist';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_f55ab24ab5c393461bca98c6642bac32'] = 'Cannot open zip file. It might be broken or damaged';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_504dc9d91612cd4e53eaa4020df1c36e'] = 'Cannot extract zip data';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_ee7151c4fef893a18e167c6807fb0535'] = 'Neither Data.xml nor Config.xml exists';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_55059225fd78e48ab8552b8c6fff20ca'] = 'Cannot create config xml file.';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_0c32ea41eb876db2abb6db9c5b89006e'] = 'Cannot create data xml file.';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_fd2994c6870685826485927e4472dc57'] = 'Cannot create Menu-Info.xml';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_1031371f906a92891140f384d04b3421'] = 'An error occurred during the archive generation';
|
||||
$_MODULE['<{ets_megamenu}prestashop>form_39acea19424caebfa3e95fd467ac6e11'] = 'Select/Unselect all';
|
||||
$_MODULE['<{ets_megamenu}prestashop>form_ec9da5db23d32f44f4031df5bd98cb11'] = 'Browse icon';
|
||||
$_MODULE['<{ets_megamenu}prestashop>form_a6a3c692b271fcc9c06e1758590384cc'] = 'Clear menu cache';
|
||||
$_MODULE['<{ets_megamenu}prestashop>form_63f57742717e6101a066d7275360332d'] = 'Uploaded image:';
|
||||
$_MODULE['<{ets_megamenu}prestashop>form_687cbf3e103f4ec4facecab72e3008a4'] = 'Click to see full size image';
|
||||
$_MODULE['<{ets_megamenu}prestashop>form_a8d009b33e7c67b45cf2f14fe6d419ad'] = 'Only reset configuration to default. Menu data won\'t be lost';
|
||||
$_MODULE['<{ets_megamenu}prestashop>form_526d688f37a86d3c3f27d0c5016eb71d'] = 'Reset';
|
||||
$_MODULE['<{ets_megamenu}prestashop>form_16bfbf9c462762cf1cba4134ec53c504'] = 'Loading';
|
||||
$_MODULE['<{ets_megamenu}prestashop>form_4e11db406c6c9f234fe8579cc9bc5ef6'] = 'Saving';
|
||||
$_MODULE['<{ets_megamenu}prestashop>form_0db377921f4ce762c62526131097968f'] = 'General';
|
||||
$_MODULE['<{ets_megamenu}prestashop>form_1afa74da05ca145d3418aad9af510109'] = 'Design';
|
||||
$_MODULE['<{ets_megamenu}prestashop>form_80a77a0d27c15659831d0d50bbed3ab0'] = 'Extra features';
|
||||
$_MODULE['<{ets_megamenu}prestashop>admin-form_d3d2e617335f08df83599665eef8a418'] = 'Close';
|
||||
$_MODULE['<{ets_megamenu}prestashop>admin-form_c3bf447eabe632720a3aa1a7ce401274'] = 'Open';
|
||||
$_MODULE['<{ets_megamenu}prestashop>admin-form_f2a6c498fb90ee345d997f888fce3b18'] = 'Delete';
|
||||
$_MODULE['<{ets_megamenu}prestashop>admin-form_7dce122004969d56ae2e0245cb754d35'] = 'Edit';
|
||||
$_MODULE['<{ets_megamenu}prestashop>admin-form_474c1219b0e41415e1115456a362ef4d'] = 'Delete this item';
|
||||
$_MODULE['<{ets_megamenu}prestashop>admin-form_0164b35f3cbc5cbf9bf58abeb4bc14df'] = 'Add new menu';
|
||||
$_MODULE['<{ets_megamenu}prestashop>admin-form_8a165af354761ba57a7f9413cf7b010a'] = 'Edit menu';
|
||||
$_MODULE['<{ets_megamenu}prestashop>admin-form_4220caf81d84096b21f1c382d9f2104c'] = 'Add new column';
|
||||
$_MODULE['<{ets_megamenu}prestashop>admin-form_c3e7864531017869d04d401e5771cde4'] = 'Edit column';
|
||||
$_MODULE['<{ets_megamenu}prestashop>admin-form_137e8451b75e1e21b42f174538cd5cb0'] = 'Delete this column';
|
||||
$_MODULE['<{ets_megamenu}prestashop>admin-form_4fd76a4441a519f2a61252085d438b0f'] = 'Delete this block';
|
||||
$_MODULE['<{ets_megamenu}prestashop>admin-form_d4bde2ef599c3bc55a57e23427eabbd2'] = 'Edit this block';
|
||||
$_MODULE['<{ets_megamenu}prestashop>admin-form_bd6b819a39fdcd26de086e9f352c1fa0'] = 'Add new block';
|
||||
$_MODULE['<{ets_megamenu}prestashop>admin-form_ed75712b0eb1913c28a3872731ffd48d'] = 'Duplicate';
|
||||
$_MODULE['<{ets_megamenu}prestashop>admin-form_a2b8f8667e7bb8cb9ea87526c637c93d'] = 'Duplicate this menu';
|
||||
$_MODULE['<{ets_megamenu}prestashop>admin-form_a2c3cdca64334e4f378d97ff72608b36'] = 'Duplicate this column';
|
||||
$_MODULE['<{ets_megamenu}prestashop>admin-form_667398242bf9a519ce518c772bb34e1f'] = 'Duplicate this block';
|
||||
$_MODULE['<{ets_megamenu}prestashop>admin-form_18d043a5ec966d214566f4dda8d31c01'] = 'Image is invalid';
|
||||
$_MODULE['<{ets_megamenu}prestashop>admin-form_f6c4ed278c3f8a43a2b4913a1d61c6d5'] = 'Add menu';
|
||||
$_MODULE['<{ets_megamenu}prestashop>admin-form_c93e7ab5c20aab9f777ce2ac2655c700'] = 'Preview in tab mode';
|
||||
$_MODULE['<{ets_megamenu}prestashop>admin-form_5c6ba25104401c9ee0650230fc6ba413'] = 'Tab';
|
||||
$_MODULE['<{ets_megamenu}prestashop>admin-form_d0c92a6168f5a6301e8c75cc787a9c10'] = 'Preview in list mode';
|
||||
$_MODULE['<{ets_megamenu}prestashop>admin-form_4ee29ca12c7d126654bd0e5275de6135'] = 'List';
|
||||
$_MODULE['<{ets_megamenu}prestashop>admin-form_3e35661f311d49f66eccb1bc2ea4de46'] = 'LTR';
|
||||
$_MODULE['<{ets_megamenu}prestashop>admin-form_efe01da942ed68b700b911f5a1b131a7'] = 'RTL';
|
||||
$_MODULE['<{ets_megamenu}prestashop>admin-form_f8d1d022d3f7645b4b0dfe4f6de3efbc'] = 'Import/Export';
|
||||
$_MODULE['<{ets_megamenu}prestashop>admin-form_f4f70727dc34561dfde1a3c529b6205c'] = 'Settings';
|
||||
$_MODULE['<{ets_megamenu}prestashop>admin-form_deba57aebf40e70cb31644eb6ee69498'] = 'Export menu content';
|
||||
$_MODULE['<{ets_megamenu}prestashop>admin-form_19976a024d14b37b816064a67c64732e'] = 'Export menu';
|
||||
$_MODULE['<{ets_megamenu}prestashop>admin-form_b5112dd068d158561df29735df378eef'] = 'Export all menu data including images, text and configuration';
|
||||
$_MODULE['<{ets_megamenu}prestashop>admin-form_b8c534fb8ac5166939ccce4525eb148f'] = 'Import menu data';
|
||||
$_MODULE['<{ets_megamenu}prestashop>admin-form_4f92db9fb554ed1d896ef872346e345f'] = 'Menu data package';
|
||||
$_MODULE['<{ets_megamenu}prestashop>admin-form_7726d9dd8129ac1ed3eaf1c5da96ae28'] = 'Clear all menus before importing';
|
||||
$_MODULE['<{ets_megamenu}prestashop>admin-form_377119d4cf2d6af97ac466d2954d6e77'] = 'Importing data';
|
||||
$_MODULE['<{ets_megamenu}prestashop>admin-form_20b0d75c1373adc14873b7b41a495602'] = 'Import menu';
|
||||
$_MODULE['<{ets_megamenu}prestashop>admin-icon_d3d2e617335f08df83599665eef8a418'] = 'Close';
|
||||
$_MODULE['<{ets_megamenu}prestashop>admin-icon_ec9da5db23d32f44f4031df5bd98cb11'] = 'Browse icon';
|
||||
$_MODULE['<{ets_megamenu}prestashop>block-product-item_f2a6c498fb90ee345d997f888fce3b18'] = 'Delete';
|
||||
$_MODULE['<{ets_megamenu}prestashop>demo_758c9dd89c0eda9ec21eab9f2d0ce195'] = 'Notice: this is just for back office preview!';
|
||||
$_MODULE['<{ets_megamenu}prestashop>demo_1c56f69b46bbf40a0a692af3edf2cd1b'] = 'Hello, thank you for checking the demo back office of [1]Mega Menu PRO[/1]';
|
||||
$_MODULE['<{ets_megamenu}prestashop>demo_5afad9d74d1a9aceac2a4bffabc45388'] = 'We would like to inform you that this \"Back office demo\" is just for demonstrating and help you have an overview of the module is features.';
|
||||
$_MODULE['<{ets_megamenu}prestashop>demo_1ac1e88c1a9425cc3f02fdca65ee5c41'] = 'All the changes you make within this \"Back office demo\" WON NOT be saved [1] and WON NOT be applied to the front office.';
|
||||
$_MODULE['<{ets_megamenu}prestashop>demo_69991379ca4f47f42739ad3fb6962e78'] = 'Yes, I understand. That is ok!';
|
||||
$_MODULE['<{ets_megamenu}prestashop>demo_fd05df0769dd8d5dd514d464d3e50d34'] = 'No, take me to front office!';
|
||||
$_MODULE['<{ets_megamenu}prestashop>item-block_c613629aef5762bb8c3f646a4035b7fd'] = 'Delete block';
|
||||
$_MODULE['<{ets_megamenu}prestashop>item-block_f2a6c498fb90ee345d997f888fce3b18'] = 'Delete';
|
||||
$_MODULE['<{ets_megamenu}prestashop>item-block_dbe9af535d36976a3fb4158761b21e55'] = 'Duplicate block';
|
||||
$_MODULE['<{ets_megamenu}prestashop>item-block_ed75712b0eb1913c28a3872731ffd48d'] = 'Duplicate';
|
||||
$_MODULE['<{ets_megamenu}prestashop>item-block_4f358ab0d7f1d9623bdcad1c346bd0f6'] = 'Edit block';
|
||||
$_MODULE['<{ets_megamenu}prestashop>item-block_7dce122004969d56ae2e0245cb754d35'] = 'Edit';
|
||||
$_MODULE['<{ets_megamenu}prestashop>item-column_f722b0bbb0ecaa598bf84b6568ac826b'] = 'Delete column';
|
||||
$_MODULE['<{ets_megamenu}prestashop>item-column_f2a6c498fb90ee345d997f888fce3b18'] = 'Delete';
|
||||
$_MODULE['<{ets_megamenu}prestashop>item-column_53f6b8619350888a722e39b25414b909'] = 'Duplicate column';
|
||||
$_MODULE['<{ets_megamenu}prestashop>item-column_ed75712b0eb1913c28a3872731ffd48d'] = 'Duplicate';
|
||||
$_MODULE['<{ets_megamenu}prestashop>item-column_c3e7864531017869d04d401e5771cde4'] = 'Edit column';
|
||||
$_MODULE['<{ets_megamenu}prestashop>item-column_7dce122004969d56ae2e0245cb754d35'] = 'Edit';
|
||||
$_MODULE['<{ets_megamenu}prestashop>item-column_2ff8071bcd15a31f9a743f1b06d0d00f'] = 'Add block';
|
||||
$_MODULE['<{ets_megamenu}prestashop>item-menu_2b5ad90c840d138033f8e9641b17e7b7'] = 'Delete menu';
|
||||
$_MODULE['<{ets_megamenu}prestashop>item-menu_f2a6c498fb90ee345d997f888fce3b18'] = 'Delete';
|
||||
$_MODULE['<{ets_megamenu}prestashop>item-menu_630e6ef08d01ef5cb9e3397e8db5e994'] = 'Duplicate menu';
|
||||
$_MODULE['<{ets_megamenu}prestashop>item-menu_ed75712b0eb1913c28a3872731ffd48d'] = 'Duplicate';
|
||||
$_MODULE['<{ets_megamenu}prestashop>item-menu_8a165af354761ba57a7f9413cf7b010a'] = 'Edit menu';
|
||||
$_MODULE['<{ets_megamenu}prestashop>item-menu_d3d2e617335f08df83599665eef8a418'] = 'Close';
|
||||
$_MODULE['<{ets_megamenu}prestashop>item-menu_67b766b66c1b187ef3ad796aabf1753b'] = 'Add tab';
|
||||
$_MODULE['<{ets_megamenu}prestashop>item-menu_7dce122004969d56ae2e0245cb754d35'] = 'Edit';
|
||||
$_MODULE['<{ets_megamenu}prestashop>item-menu_b61b8f498d489f2e2b916b887b7062bc'] = 'Add column';
|
||||
$_MODULE['<{ets_megamenu}prestashop>item-tab_a03ce9e73e3b0b18331ef0dcf4f410e1'] = 'Delete tab';
|
||||
$_MODULE['<{ets_megamenu}prestashop>item-tab_f2a6c498fb90ee345d997f888fce3b18'] = 'Delete';
|
||||
$_MODULE['<{ets_megamenu}prestashop>item-tab_b04cb66e24ece03f1d36dbc09a2945ea'] = 'Duplicate tab';
|
||||
$_MODULE['<{ets_megamenu}prestashop>item-tab_ed75712b0eb1913c28a3872731ffd48d'] = 'Duplicate';
|
||||
$_MODULE['<{ets_megamenu}prestashop>item-tab_2da9b93934e51331be3c8ccf3428e001'] = 'Edit tab';
|
||||
$_MODULE['<{ets_megamenu}prestashop>item-tab_7dce122004969d56ae2e0245cb754d35'] = 'Edit';
|
||||
$_MODULE['<{ets_megamenu}prestashop>item-tab_d3d2e617335f08df83599665eef8a418'] = 'Close';
|
||||
$_MODULE['<{ets_megamenu}prestashop>item-tab_b61b8f498d489f2e2b916b887b7062bc'] = 'Add column';
|
||||
$_MODULE['<{ets_megamenu}prestashop>megamenu_b61541208db7fa7dba42c85224405911'] = 'Menu';
|
||||
$_MODULE['<{ets_megamenu}prestashop>menu-html_b61541208db7fa7dba42c85224405911'] = 'Menu';
|
||||
$_MODULE['<{ets_megamenu}prestashop>menu-html_0557fa923dcee4d0f86b1409f5c2167f'] = 'Back';
|
||||
$_MODULE['<{ets_megamenu}prestashop>product-list-17_c91e4ee170226d66e90f99ba917e4c20'] = 'Quick view';
|
||||
$_MODULE['<{ets_megamenu}prestashop>product-list-17_8a48e3d7293fc9e2f774581231418412'] = 'No product available';
|
||||
$_MODULE['<{ets_megamenu}prestashop>product-list-mini_8a48e3d7293fc9e2f774581231418412'] = 'No product available';
|
||||
$_MODULE['<{ets_megamenu}prestashop>product-list_c91e4ee170226d66e90f99ba917e4c20'] = 'Quick view';
|
||||
$_MODULE['<{ets_megamenu}prestashop>product-list_2d0f6b8300be19cf35e89e66f0677f95'] = 'Add to cart';
|
||||
$_MODULE['<{ets_megamenu}prestashop>product-list_03c2e7e41ffc181a4e84080b4710e81e'] = 'New';
|
||||
$_MODULE['<{ets_megamenu}prestashop>product-list_bb63f16d5ebfcfa8a651642a7bb2ea5c'] = 'Sale!';
|
||||
$_MODULE['<{ets_megamenu}prestashop>product-list_03de921a8ea82897e13d33d66c28b4db'] = 'Online only';
|
||||
$_MODULE['<{ets_megamenu}prestashop>product-list_ca2bf12169883f4982d8fe34b7e3c618'] = 'Reduced price!';
|
||||
$_MODULE['<{ets_megamenu}prestashop>product-list_69d08bd5f8cf4e228930935c3f13e42f'] = 'In Stock';
|
||||
$_MODULE['<{ets_megamenu}prestashop>product-list_b55197a49e8c4cd8c314bc2aa39d6feb'] = 'Out of stock';
|
||||
$_MODULE['<{ets_megamenu}prestashop>product-list_cb3c718c905f00adbb6735f55bfb38ef'] = 'Product available with different options';
|
||||
$_MODULE['<{ets_megamenu}prestashop>product-list_216adaf4e98dc62ec3abeab51b9fc57f'] = 'Please select at least one product';
|
||||
$_MODULE['<{ets_megamenu}prestashop>product-list_90723749917a82bf3ff8a73247d32ffb'] = 'You cannot add more than %d product(s) to the product comparison';
|
||||
$_MODULE['<{ets_megamenu}prestashop>product-list_8a48e3d7293fc9e2f774581231418412'] = 'No product available';
|
||||
351
modules/ets_megamenu/translations/es.php
Normal file
@@ -0,0 +1,351 @@
|
||||
<?php
|
||||
|
||||
global $_MODULE;
|
||||
$_MODULE = array();
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_968c8ef65d5d5d87254964b78a2e02f5'] = 'Mega Menu PRO';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_b04f52f3454c7b0d75cdd09314eb0b52'] = 'Visual arrastrar y soltar mega menú constructor';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_fc029308351f31f8fe047451beb1835b'] = 'FUENTE PREDETERMINADO DEL TEMA';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_8a165af354761ba57a7f9413cf7b010a'] = 'Menú de edición';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_f6c4ed278c3f8a43a2b4913a1d61c6d5'] = 'Añadir menú';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_c9cc8cce247e49bae79f15173ce97354'] = 'Guardar';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_02674a4ef33e11c879283629996c8ff8'] = 'Dirección';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_c1b5fa03ecdb95d4a45dd1c40b02527f'] = 'Horizontal';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_06ce2a25e5d12c166a36f654dbea6012'] = 'Vertical';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_782ee9a18759cfa9ee20ed12a8bacce9'] = 'Color del texto del menú vertical';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_6f91f9164ea25b4a4b1b00d4e9395154'] = 'Color de fondo del menú vertical';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_badc91809c2dc1fecabe778ecfc3bd9f'] = 'Abrir siempre el menú vertical';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_7ebf4765a04e99362230fc04eac86480'] = 'Aplicar sólo para escritorio';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_93cba07454f06a4a960172bbd6e2a435'] = 'Sí';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_bafd7322c6e97d25b6299b5d6fe8920b'] = 'No';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_0cdbc3ce6753e2083253ef0ff3753347'] = 'Quitar borde';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_2641b32b86cfe616962d782685363198'] = 'Ancho del elemento del menú';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_4ade9e3bb42a3ad0b29de42915e05e04'] = 'Utilice \"px\" o \"%\" o \"vw\". Por ejemplo: \"20%\" o \"230px\" o \"80vw\"';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_62b6172b996ec621eee5722af8a1624b'] = 'Ancho de la elemento de pestaña';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_231131cf0e206f235339643f8350739a'] = 'Tipo de enlace del menú';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_a7140e841df723ac623f174ba5aa088a'] = 'Enlace personalizado';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_622f3c75de9f3481ffc58c1f292c1c2b'] = 'Página CMS';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_bbaff12800505b22a853e8b7f4eb6a22'] = 'Contacto';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_3adbdb3ac060038aa0e6e6c138ef9873'] = 'Categoría';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_c0bd7654d5b278e65f21cf4e9153fdb4'] = 'Fabricante';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_ec136b444eede3bc85639fac0dd06229'] = 'Proveedor';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_8cf04a9734132302f96da8e113e80ce5'] = 'Página principal';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_b78a3223503896721cca1303f776159b'] = 'Título';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_ccff5fe10a335f4884d54e146e68b80d'] = 'Fuente de icono de menú';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_a579ead35787d34de93658bab29b8de5'] = 'Utilice la clase de font awesome. Ej .: fa-bars, fa-plus, ...';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_81a36689f3786c62f31b872020afc9dc'] = 'Imagen del icono del menú';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_67c0dcafa33f4e672d2b1fa59fde1cd3'] = 'Tamaño recomendado: 20 x 20';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_546752887fe72e4c110341f2a780e929'] = 'Alineación de submenú';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_9128ab2a4d2b92815cd4db44baab7077'] = '(diseño LTR)';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_06b9281e396db002010bde1de57262eb'] = 'Auto';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_945d5e233cf7d6240f6b783b36a374ff'] = 'Izquierdo';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_92b09c7c48c520c3c55e497875da437c'] = 'Derecha';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_f5df0297bedf69afcbe26b8ab7805c9e'] = 'La alineación del submenú se invierte en el diseño RTL automáticamente';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_22e10f4af52114387f314fee00020250'] = 'Mostrar pestañas en ancho completo';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_358f993f450ec503a6ddf8915dc014ea'] = 'Ancho del submenú';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_3b26b2a6e99c6e75c9f7a6749b0652af'] = 'Utilice \"px\" o \"%\" o \"vw\". Por ejemplo: \"100%\" o \"100px\" o \"80vw\"';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_95ff0dbd3f00cfcd9ee25dadae9911c0'] = 'Clase personalizado';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_9a13acfbbe8803801f8f291919352eee'] = 'Texto de alerta de burbuja';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_1ed3f9c6f7037274596ab54ea292d5a7'] = 'Nuevo, Venta, Hot... Deje en blanco si no desea tener una alerta de burbuja para este menú';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_fc1c9ff6972ea2b89de122633d9a9aaf'] = 'Color de texto de alerta de burbuja';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_423fadd8b2c94c6218a24c87117e7418'] = 'Color de fondo alerta burbuja';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_69ee1afc9b3d02e53d9f733c1993b568'] = 'Imagen de fondo';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_94af0bd346f7900797e8ab43f9922e39'] = 'Posición de fondo';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_4f1f6016fc9f3f2353c0cc7c67b292bd'] = 'Centro';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_a4ffdcf0dc1f31b9acaf295d75b51d00'] = 'La parte superior';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_d3708546a929dfcf66eaeaba794486eb'] = 'Lado derecho de la parte superior';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_a4d0d101d6a34bf80ffeee601c3ff84a'] = 'Lado izquierda de la parte superior ';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_2ad9d63b69c4a10a5cc9cad923133bc4'] = 'Fondo';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_b67554192c50f4f6a4c1bd4797f6c3f8'] = 'Lado izquierdo de la fondo';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_5968e3c37145f57587afcba727d2b120'] = 'Lado derecho de la fondo';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_75d6ef775a2104c57c52706d869a86be'] = 'Abrir enlace en una nueva pestaña';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_06f1ac65b0a6a548339a38b348e64d79'] = 'Orden de clasificación';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_00d23a76e43b46dae9ec7aa9dcbebb32'] = 'Habilitado';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_2da9b93934e51331be3c8ccf3428e001'] = 'Pestaña editar';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_67b766b66c1b187ef3ad796aabf1753b'] = 'Añadir pestaña';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_c90a53528da75f001e1d69dd844f0993'] = 'Fuente de icono de pestaña';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_840ec47f8515d48297c88a335e872fb3'] = 'Utilice la clase de font awesome. Ej: fa-bars, fa-plus, ...';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_3f30215d52c4851b8f06c8f1c7a0bd22'] = 'Imagen del icono de pestaña';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_4d66066ad0f21b108844607a247f1112'] = 'Ancho del contenido de la pestaña';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_2b5f489e77e74559e97bd43e979a4337'] = 'Mostrar contenido de la pestaña desde la parte superior';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_b61541208db7fa7dba42c85224405911'] = 'Menú';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_c3e7864531017869d04d401e5771cde4'] = 'Columna de edición';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_b61b8f498d489f2e2b916b887b7062bc'] = 'Añadir columna';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_d83778cd6dc223fd79bb07d598d6223c'] = 'Tamaño ancho de columna';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_e4c38d6d45baf080943d323dd51a2ce8'] = 'División';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_aa5f289085a24b28d52c9113555e3b8b'] = 'Dividir de esta columna a nueva línea.';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_5c6ba25104401c9ee0650230fc6ba413'] = 'Pestaña';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_4f358ab0d7f1d9623bdcad1c346bd0f6'] = 'Bloque de edición';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_2ff8071bcd15a31f9a743f1b06d0d00f'] = 'Agregar un bloque';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_b5a812dff3c33b63cf77f0ce007da42e'] = 'Tipo de bloque';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_8b407e232af57b6d8579d7ed0626c091'] = 'Texto / Html';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_be53a0541a6d36f6ecb879fa2c584b08'] = 'Imagen';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_068f80c7519d0528fb08e82137a72131'] = 'Productos';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_1976d7f704de389d9fe064e08ea35b2d'] = 'Columna';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_cf23cd9379acd73edb90d1076efc862c'] = 'Enlace del título';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_5d29e81352b150a3e306eb985f1735a8'] = 'Deje en blanco si no desea agregar un enlace para bloquear el título';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_2377be3c2ad9b435ba277a73f0f1ca76'] = 'Fabricantes';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_01fda57aa6c7e9f07f5aa36b108e95cb'] = 'Orden por';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_809ab7c071cedac33b6ee810e32fb5f0'] = 'Nombre A-Z';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_d443ba2c0e31bbf213c36dfe1f81ac74'] = 'Nombre Z-A';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_f66306bc4b2f9bac47088451fc0bb476'] = 'El fabricante más nuevo primero';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_3319557c87587792f7907b4a5881a095'] = 'Mostrar imagen de fabricantes ';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_d02b2fc8af1142137d63860b0b638e7e'] = 'Mostrar nombre de fabricantes ';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_c276bdf15015f63a89483dbbbfe6edd9'] = 'Fabricantes por fila';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_c4ca4238a0b923820dcc509a6f75849b'] = '1';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_c81e728d9d4c2f636f067f89cc14862c'] = '2';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_eccbc87e4b5ce2fe28308fd9f2a7baf3'] = '3';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_a87ff679a2f3e71d9181a67b7542122c'] = '4';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_e4da3b7fbbce2345d7772b0674a318d5'] = '5';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_1679091c5a880faf6fb5e6087eb1b2dc'] = '6';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_8f14e45fceea167a5a36dedd4bea2543'] = '7';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_c9f0f895fb98ab9159f51fd0297e236d'] = '8';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_45c48cce2e2d7fbdea1afc51c7c6ad26'] = '9';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_d3d9446802a44259755d38e6d163e820'] = '10';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_6512bd43d9caa6e02c990b0a82652dca'] = '11';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_c20ad4d76fe97759aa27a0c99bff6710'] = '12';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_1814d65a76028fdfbadab64a5a8076df'] = 'Proveedores';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_bae05f8f16fa0f42562df90f6713237e'] = 'El proveedor más nuevo primero';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_6f34c552ec2167dff966202ccc68186b'] = 'Mostrar imagen de proveedores';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_10dc3660f72acc9b05c8742f2c8d301a'] = 'Mostrar nombre de proveedores';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_2bc7519ec199311e82717bef59ef6450'] = 'Proveedores por fila';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_af1b98adf7f686b84cd0b443e022b7a0'] = 'Categorías';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_63ce794099274c72d3844c1296a92db0'] = 'Orden por defecto';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_0bb450ed086ce232068db7852f99ded2'] = 'La categoría más nueva primero';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_ccb48f393023eee753f69208f038e0f3'] = 'Páginas CMS';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_2386dbe21fd6472485a7e4a871160217'] = 'HTML / contenido de texto';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_9ce38727cff004a058021a6c7351a74a'] = 'Enlace de imágen';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_66110e941b9796cdaf57c8b1aadb6739'] = 'Deje en blanco si no desea agregar un enlace a la imagen';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_3d19aea4e2d382e85165bbf71cef1e05'] = 'Tipo de producto';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_9ff0635f5737513b1a6f559ac2bff745'] = 'Nuevos productos';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_7f55dc18fd28be03bea9991647014e92'] = 'Productos populares';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_8af828f302b91d1f905dc35acc43efaa'] = 'Productos especiales';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_01f7ac959c1e6ebbb2e0ee706a7a5255'] = 'Best sellers';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_43f03332c7f75a3056cfa2e29bda6bba'] = 'Productos específicos';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_437ac95a91364eb49587af5e146b1745'] = 'Buscar productos';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_5221812aefa6842bf09217ee8dc0fea8'] = 'Buscar producto por ID, nombre o referencia';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_3e22403f8e252c77a37d5262ccb45159'] = 'Recuento de productos';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_3812464e9c462762cb7f1b1f3a8f0e30'] = 'artículo(s)';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_dbb7eaea6542941545255af0c27f0eaa'] = 'Habilitar la descripción del producto';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_d4ea25e96150caf6c2e412fa3123a78c'] = 'Habilitar el reloj de cuenta atrás';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_9e3b95d7c76b34fc36feceba25606caf'] = 'Mostrar título';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_254f642527b45bc260048e30704edb39'] = 'Configuración';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_b20c2b0f4bb2c049ec080151b6322544'] = 'Enganchar a';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_d2679b3aa8ca60a149888dd58c7d148b'] = 'Gancho por defecto';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_678314871893087a13885397b9359d70'] = 'Gancho personalizado';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_2fcc984acd8008a708c1afca4ac47203'] = 'Coloque {hook h = \'displayMegaMenu\'} en el archivo tpl donde desee visualizar el mega menú';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_9c1816d94b21bcc4014605193aaa2e9c'] = 'Efecto de transición del submenú';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_7a1920d61156abc05a60135aefe8bc67'] = 'Defecto';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_265eea5b45c01587fca2ac8d73cf7d91'] = 'Bajar deslizándose';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_cb7c3f14014406b90b14f6ec63b9c42c'] = 'Reducir a escala';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_668857a25768ba031dcb062e53e3f8be'] = 'Fundirse en hasta';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_f5ca4abce85e2dddb0342d0bae3a7270'] = 'Acercarse';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_ceec1026d2e581e6af515f964be5722b'] = 'Modo de dirección de idioma';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_3a3f1cf30e8078032ec76a5ea7075b34'] = 'Detección automática de LTR o RTL';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_3e35661f311d49f66eccb1bc2ea4de46'] = 'LTR';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_efe01da942ed68b700b911f5a1b131a7'] = 'RTL';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_61f51aeeeb6012edfe39e1280290b586'] = 'Tipo de menú móvil';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_c8df43648942ec3a9aec140f07f47b7c'] = 'Flotante';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_764ff8d94d40c2ecfca7141e7451aa23'] = 'Pantalla completa';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_2fa0d3cf7d808e682832cf1b64f68288'] = 'Tipo de imagen en miniatura';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_3558979e4ac907db936a4caf9b38bb95'] = 'Incluir subcategorías';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_034d61901e03810153458d8fd9ee0e32'] = 'Habilitar menú pegajoso';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_eca6891198a19670c4caefb49a8272d2'] = 'Ocultar menú pegajoso en el móvil';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_150f2f0095524e186332edc6a42bdc17'] = 'Haga clic en el texto del menú para abrir su submenú.';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_833fa5ca879c27de92eb6f9b2edbfe6b'] = 'Solo disponible para móvil';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_e4978520c0a7db22d476049fc48a2811'] = 'Mostrar icono de menú vertical en el móvil';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_4dcba203e12a944fd99c17b3df6019d1'] = 'Mostrar elemento de menú activo';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_744a24c1691e7e80b55e3a9f3c4c6601'] = 'Habilitar efecto de transparencia gris para submenú';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_09cdd6a7321c64bae05b8cca859f1461'] = 'Habilitar caché';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_5f00c519230bb042f8b9a4b0c291fba3'] = 'Duración de la caché';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_6a7e73161603d87b26a8eac49dab0a9c'] = 'Horas';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_d4d0ee9985bf14169e809b164524b0b0'] = 'Tipo de diseño';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_b188fdc8fbf2d384eb42079bdf92438e'] = 'Diseño 1';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_896b004b0000eb87455719ab8305540f'] = 'Diseño 2';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_5158e7182521be6e4f63ed2ddcdbeff9'] = 'Diseño 3';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_5b0c56d71a5e571c9dfcb14658238ec1'] = 'Diseño 4';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_495211a35a31e2216de73afe812a227e'] = 'Diseño 5';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_16bf11530bc42fe5fad63a29cc456561'] = 'Fuente de encabezado';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_857cb35a9382f11dac28b9d811455085'] = 'Use la fuente predeterminada de su tema o seleccione una fuente de Google de la lista';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_fd1c87ab22930765490fd537abfd719a'] = 'Tamaño de fuente de encabezado';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_f530355f6159150fe5ab070472c164f4'] = 'Fuente de texto general';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_94cd30584ac9303f44905f69bf7aa11b'] = 'Tamaño de fuente del submenú título';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_1aec5909a0a51e1412ec99e87b2543b0'] = 'Tamaño de fuente de texto general';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_ecc1376febdbaf4eb985d4885b6aaef1'] = 'Fondo del menú';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_c541248912bfebcfa4bc75f59df6be41'] = 'Color del texto del menú';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_c1e4a52685d5f2a8a8405ec14a6d837e'] = 'Color del texto del menú cuando pasar el mouse sobre';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_ad5f165402aa9097721ea82804acf11b'] = 'Color del fondo del menú cuando pasar el mouse sobre';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_ceb2fbe7f1354d42afe52a3e019cc984'] = 'Fondo de submenú';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_a5c824ab7b791821e4821236f8064158'] = 'Título del submenú';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_8c97c96d883731fb5c65225111090746'] = 'Color del texto del submenú';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_c2c2e915af5b7dbe47dc3246132217d3'] = 'Color del enlace del submenú cuando pasar el mouse sobre';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_4ee26c6658a45d86db563efa2c8b3b4b'] = 'Fondo de la barra de menú en el móvil';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_13ce19b281fa85fb7eaa1b9cff6cd07c'] = 'Color de la barra de menú en el móvil';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_1c2a4782352d563174cd209b564faecd'] = 'Mostrar carro de compras';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_f735cba10d0289cf423c69c82b3417cf'] = '¡No recomendado! Solo para usuarios avanzados. El menú se puede romper cuando esta opción está habilitada (especialmente en temas personalizados). Se requiere tener conocimientos de HTML / CSS para refinar los problemas. Por favor, comprenda que esto es gratuito, ya que depende de su tema.';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_c270de6254a4416cbca009b96f29d340'] = 'Mostrar cuadro de búsqueda';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_2c4ed1877b9154ce1680987b434d9604'] = '¡No recomendado! Solo para el módulo de búsqueda predeterminado y para usuarios avanzados. El menú se puede romper cuando esta opción está habilitada (especialmente en temas personalizados). Se requiere tener conocimientos de HTML / CSS para refinar los problemas. Por favor, comprenda que esto es gratuito, ya que depende de su tema.';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_525736a04a1410119f2e4d42f06982ef'] = 'Abrir el cuadro de búsqueda por defecto';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_d84dd66a1934224777c516c5d6543d99'] = 'Mostrar enlaces de información de usuario';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_45879c07f04dd122242168f6d742b357'] = 'Texto HTML personalizado';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_ce68ba30cf3867122ead2d8ccdf0b8a2'] = 'Debe habilitar el módulo Mega Menu PRO para configurar sus funciones';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_62f5d708d6ad1fa1ddd9429a65cccbea'] = 'Todas las categorias';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_a08e5170f1ac13ffbc4470b546443ac5'] = 'Imprescindible';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_d9d7f6dc5cec2d96fdbdc731ee91f547'] = 'Descargado';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_276ee9e858f36e807d934b922a21a98d'] = 'Ver todos nuestros módulos';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_b548e7fcbe083ebbbb369960bfb0e9a0'] = 'Los favoritos de Prestashop';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_ea18b0b61adc5f34ddc205cdaa344ee3'] = 'Elegido por nuestros vendedores';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_d91586ce336b874e8b4e6b1fb6731628'] = 'Superhero Seller';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_e46c3fa146c7cecb1162ceeef0435e94'] = 'Socio creador de módulos';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_02d4482d332e1aef3437cd61c9bcc624'] = 'Contactar';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_d3d2e617335f08df83599665eef8a418'] = 'Cerrar';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_eba7393526afaf1836ba1451af0fa021'] = '12/12 (lleno)';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_b5177504293451c17fe71226af6659ac'] = 'Eliminar imagen exitosa';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_f6fefe344352f0815e6f53ad8f97ae76'] = 'Artículo eliminado';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_08c9975e2e9fb8c1a954c73196a9d2bb'] = 'Artículo duplicado';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_d8dfbb603a652a981303363356b66f78'] = 'No se puede duplicar el artículo. Un problema desconocido sucedió';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_180641b777082af315e11f11136ef62a'] = 'Caché borrado';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_93cbeaa38add6ac51a2c565146ba111b'] = 'El menú fue importado con éxito. Esta página será recargada en 3 segundos.';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_c986f2e82ba2d956bd3a5df143fc29e5'] = 'La configuración fue restaurar con éxito. Esta página será recargada en 3 segundos.';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_0a5fa53f3f20f67f98bd6c3b16df059d'] = 'es requerido';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_248336101b461380a4b2391a7625493d'] = 'Guardado';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_ffe6b15f8499c865dc39d0795d882c35'] = 'Ocurrió un error desconocido';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_7bb83623723e351067bfb431b5428428'] = 'Objeto está vacío';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_dcf3bf538d394728706dbc710865d01b'] = 'El campo no es válido';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_e155eaf44266d6c55a6ddd39c3b3c34b'] = 'El archivo de carga no puede superar los 100 MB';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_df02b8ac4dc8f7ec5a0b1364a911b64b'] = 'l nombre del archivo ya existe. Intenta renombrar el archivo y subirlo de nuevo.';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_ed03b3ac2f9dc77202649d1cd6c094c6'] = 'No se puede subir el archivo';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_7cc92687130ea12abb80556681538001'] = 'Se produjo un error durante el proceso de subir de la imagen.';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_c7d3d5ef28a517e88bd85cbd2b5a13fc'] = 'Imagen eliminada';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_41e62dd32e8ad4c8050b561f173a12e1'] = 'No se puede eliminar el elemento debido a un problema técnico desconocido';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_998b344cff693ad388a14ba89b1523c7'] = 'no es válido';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_b8b3ae1bf635742667e9f3f55dc7e646'] = 'El texto de la burbuja no puede tener más de 50 caracteres.';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_a464ea8d48572d8f0e5a260c55a0178a'] = 'Se requiere color de texto de alerta de burbuja';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_bba4d9a657b10e609bd722a5142eb16b'] = 'Se requiere color de fondo de alerta de burbuja';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_deb4ef4d18b545ba2a3a3fd5bc155e5f'] = 'Se requiere enlace personalizado';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_d8a8a612dde9d851e8e33bb8eadea0e1'] = 'Porfavor seleccione una categoría';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_240213c123e4ef2ba0a5283068e26605'] = 'Porfavor seleccione un fabricante';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_3adaf6c593f1ea64d6468e4fd2fc003e'] = 'Porfavor seleccione un proveedor';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_3f54e98cb43cb017376763427e908485'] = 'Se requiere la página de CMS';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_b5ce00d7b254ecbb2c242cf399061c15'] = 'El tipo de enlace no es válido';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_e234b18943bbedcc4afc6d30a45e989e'] = 'El ancho del submenú debe estar entre 10 y 100';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_84b755bdeb3f6df297b84db26746912b'] = 'HTML / Texto es requerido';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_01e0f317de80a5d8b39573414054b976'] = 'Se requieren páginas CMS';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_9fcbc8e58867bb8f75c6564157e38fc3'] = 'Se requieren categorías';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_29174bafda315dfbab561de3ceebbada'] = 'Se requieren fabricantes';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_75e6fd9bf0a7eeae37bf8aae6d117907'] = 'Se requieren proveedores';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_0e14bfaec163534638152aa11ec70ad4'] = 'Se requiere imagen';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_71074f1d700fdd3e91e17d53e44029e2'] = 'El tipo de bloque no es válido';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_56784cf39880e42f866a225d861b92c2'] = 'Por favor ingrese las identificaciones del producto';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_9b2304e077bc5dc294ea2201ef1fd6ee'] = 'Recuento de productos requerido';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_307b4f3a12df186dc03a7d316b6d3ee8'] = 'ID de producto no es válido. Por favor, introduzca los ID de los productos separados por una coma (,)';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_1067c3f730599619764fce05481566ce'] = 'El recuento de productos no es válido';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_5fd13c2b89a6eaaa4614bfe258f6c40f'] = 'El archivo zip parece estar roto';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_3aecef48e0417ca1cc03066a3f16171d'] = 'Archivo zip no existe';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_078b9a20061a21f2b47c1a4b6844df66'] = 'Menu-Info.xml no existe';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_f55ab24ab5c393461bca98c6642bac32'] = 'No se puede abrir el archivo zip. Podría estar roto o dañado';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_d664d410c31a3c0d868319fee5bab57f'] = 'No se pueden extraer datos de un archivo zip';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_ee7151c4fef893a18e167c6807fb0535'] = 'Ni Data.xml ni Config.xml existen';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_c7c406ae6cc6e6390aca6b5e0edc7a3f'] = 'No se puede crear el archivo config.xml.';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_3dc9d3baf90f74a798cf40dd61662d36'] = 'No se puede crear el archivo data.xml.';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_352b2c294ccaee9cb46d7384c5eb4384'] = 'No se puede crear el archivo Menu-Info.xml.';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_1031371f906a92891140f384d04b3421'] = 'Se ha producido un error durante la generación del archivo.';
|
||||
$_MODULE['<{ets_megamenu}prestashop>form_39acea19424caebfa3e95fd467ac6e11'] = 'Seleccionar/Deseleccionar todo';
|
||||
$_MODULE['<{ets_megamenu}prestashop>form_ec9da5db23d32f44f4031df5bd98cb11'] = 'Icono de hojear';
|
||||
$_MODULE['<{ets_megamenu}prestashop>form_a6a3c692b271fcc9c06e1758590384cc'] = 'Borrar caché de menú';
|
||||
$_MODULE['<{ets_megamenu}prestashop>form_63f57742717e6101a066d7275360332d'] = 'Imagen subida:';
|
||||
$_MODULE['<{ets_megamenu}prestashop>form_687cbf3e103f4ec4facecab72e3008a4'] = 'Haga clic para ver la imagen a tamaño completo';
|
||||
$_MODULE['<{ets_megamenu}prestashop>form_a8d009b33e7c67b45cf2f14fe6d419ad'] = 'Sólo restablecer la configuración a la predeterminada. Los datos del menú no se perderán.';
|
||||
$_MODULE['<{ets_megamenu}prestashop>form_526d688f37a86d3c3f27d0c5016eb71d'] = 'Reajustar';
|
||||
$_MODULE['<{ets_megamenu}prestashop>form_16bfbf9c462762cf1cba4134ec53c504'] = 'Cargando';
|
||||
$_MODULE['<{ets_megamenu}prestashop>form_4e11db406c6c9f234fe8579cc9bc5ef6'] = 'Guardando';
|
||||
$_MODULE['<{ets_megamenu}prestashop>form_0db377921f4ce762c62526131097968f'] = 'General';
|
||||
$_MODULE['<{ets_megamenu}prestashop>form_1afa74da05ca145d3418aad9af510109'] = 'Diseño';
|
||||
$_MODULE['<{ets_megamenu}prestashop>form_80a77a0d27c15659831d0d50bbed3ab0'] = 'Características adicionales';
|
||||
$_MODULE['<{ets_megamenu}prestashop>admin-form_d3d2e617335f08df83599665eef8a418'] = 'Cerrar';
|
||||
$_MODULE['<{ets_megamenu}prestashop>admin-form_c3bf447eabe632720a3aa1a7ce401274'] = 'Abrir';
|
||||
$_MODULE['<{ets_megamenu}prestashop>admin-form_f2a6c498fb90ee345d997f888fce3b18'] = 'Borrar';
|
||||
$_MODULE['<{ets_megamenu}prestashop>admin-form_7dce122004969d56ae2e0245cb754d35'] = 'Editar';
|
||||
$_MODULE['<{ets_megamenu}prestashop>admin-form_474c1219b0e41415e1115456a362ef4d'] = 'Borrar éste ítem';
|
||||
$_MODULE['<{ets_megamenu}prestashop>admin-form_0164b35f3cbc5cbf9bf58abeb4bc14df'] = 'Añadir nuevo menú';
|
||||
$_MODULE['<{ets_megamenu}prestashop>admin-form_8a165af354761ba57a7f9413cf7b010a'] = 'Editar menú';
|
||||
$_MODULE['<{ets_megamenu}prestashop>admin-form_4220caf81d84096b21f1c382d9f2104c'] = 'Añadir nuevo columna';
|
||||
$_MODULE['<{ets_megamenu}prestashop>admin-form_c3e7864531017869d04d401e5771cde4'] = 'Editar columna';
|
||||
$_MODULE['<{ets_megamenu}prestashop>admin-form_137e8451b75e1e21b42f174538cd5cb0'] = 'Borrar esta columna';
|
||||
$_MODULE['<{ets_megamenu}prestashop>admin-form_4fd76a4441a519f2a61252085d438b0f'] = 'Borrar este bloque';
|
||||
$_MODULE['<{ets_megamenu}prestashop>admin-form_d4bde2ef599c3bc55a57e23427eabbd2'] = 'Editar este bloque';
|
||||
$_MODULE['<{ets_megamenu}prestashop>admin-form_bd6b819a39fdcd26de086e9f352c1fa0'] = 'Añadir nuevo bloque';
|
||||
$_MODULE['<{ets_megamenu}prestashop>admin-form_ed75712b0eb1913c28a3872731ffd48d'] = 'Duplicar';
|
||||
$_MODULE['<{ets_megamenu}prestashop>admin-form_a2b8f8667e7bb8cb9ea87526c637c93d'] = 'Duplicar este menú';
|
||||
$_MODULE['<{ets_megamenu}prestashop>admin-form_a2c3cdca64334e4f378d97ff72608b36'] = 'Duplicar esta columna';
|
||||
$_MODULE['<{ets_megamenu}prestashop>admin-form_667398242bf9a519ce518c772bb34e1f'] = 'Duplicar este bloque';
|
||||
$_MODULE['<{ets_megamenu}prestashop>admin-form_18d043a5ec966d214566f4dda8d31c01'] = 'La imagen no es válida';
|
||||
$_MODULE['<{ets_megamenu}prestashop>admin-form_c93e7ab5c20aab9f777ce2ac2655c700'] = 'Vista previa en el modo de pestaña';
|
||||
$_MODULE['<{ets_megamenu}prestashop>admin-form_5c6ba25104401c9ee0650230fc6ba413'] = 'Pestaña';
|
||||
$_MODULE['<{ets_megamenu}prestashop>admin-form_d0c92a6168f5a6301e8c75cc787a9c10'] = 'Vista previa en modo lista';
|
||||
$_MODULE['<{ets_megamenu}prestashop>admin-form_4ee29ca12c7d126654bd0e5275de6135'] = 'Lista';
|
||||
$_MODULE['<{ets_megamenu}prestashop>admin-form_3e35661f311d49f66eccb1bc2ea4de46'] = 'LTR';
|
||||
$_MODULE['<{ets_megamenu}prestashop>admin-form_efe01da942ed68b700b911f5a1b131a7'] = 'RTL';
|
||||
$_MODULE['<{ets_megamenu}prestashop>admin-form_f8d1d022d3f7645b4b0dfe4f6de3efbc'] = 'Importar/Exportar';
|
||||
$_MODULE['<{ets_megamenu}prestashop>admin-form_f4f70727dc34561dfde1a3c529b6205c'] = 'Ajustes';
|
||||
$_MODULE['<{ets_megamenu}prestashop>admin-form_715eafb80fc4c2e5251a46012b0ef9e4'] = 'Otros módulos';
|
||||
$_MODULE['<{ets_megamenu}prestashop>admin-form_c4086ec40444dc78cf96bb5599f6a402'] = 'Hecho por ETS-Soft';
|
||||
$_MODULE['<{ets_megamenu}prestashop>admin-form_f6c4ed278c3f8a43a2b4913a1d61c6d5'] = 'Añadir menú';
|
||||
$_MODULE['<{ets_megamenu}prestashop>admin-form_deba57aebf40e70cb31644eb6ee69498'] = 'Exportar contenido del menú';
|
||||
$_MODULE['<{ets_megamenu}prestashop>admin-form_19976a024d14b37b816064a67c64732e'] = 'Exportar menú';
|
||||
$_MODULE['<{ets_megamenu}prestashop>admin-form_b5112dd068d158561df29735df378eef'] = 'Exportar todos los datos del menú incluyendo imágenes, texto y configuración.';
|
||||
$_MODULE['<{ets_megamenu}prestashop>admin-form_b8c534fb8ac5166939ccce4525eb148f'] = 'Importar datos del menú';
|
||||
$_MODULE['<{ets_megamenu}prestashop>admin-form_4f92db9fb554ed1d896ef872346e345f'] = 'Paquete de datos de menú';
|
||||
$_MODULE['<{ets_megamenu}prestashop>admin-form_7726d9dd8129ac1ed3eaf1c5da96ae28'] = 'Borrar todos los menús antes de importar';
|
||||
$_MODULE['<{ets_megamenu}prestashop>admin-form_377119d4cf2d6af97ac466d2954d6e77'] = 'Importando datos';
|
||||
$_MODULE['<{ets_megamenu}prestashop>admin-form_20b0d75c1373adc14873b7b41a495602'] = 'Menú de importación';
|
||||
$_MODULE['<{ets_megamenu}prestashop>admin-icon_d3d2e617335f08df83599665eef8a418'] = 'Cerrar';
|
||||
$_MODULE['<{ets_megamenu}prestashop>admin-icon_ec9da5db23d32f44f4031df5bd98cb11'] = 'Icono de hojear';
|
||||
$_MODULE['<{ets_megamenu}prestashop>block-product-item_f2a6c498fb90ee345d997f888fce3b18'] = 'Borrar';
|
||||
$_MODULE['<{ets_megamenu}prestashop>item-block_c613629aef5762bb8c3f646a4035b7fd'] = 'Borrar bloque';
|
||||
$_MODULE['<{ets_megamenu}prestashop>item-block_f2a6c498fb90ee345d997f888fce3b18'] = 'Borrar';
|
||||
$_MODULE['<{ets_megamenu}prestashop>item-block_dbe9af535d36976a3fb4158761b21e55'] = 'Duplicar bloque';
|
||||
$_MODULE['<{ets_megamenu}prestashop>item-block_ed75712b0eb1913c28a3872731ffd48d'] = 'Duplicar';
|
||||
$_MODULE['<{ets_megamenu}prestashop>item-block_4f358ab0d7f1d9623bdcad1c346bd0f6'] = 'Editar bloque';
|
||||
$_MODULE['<{ets_megamenu}prestashop>item-block_7dce122004969d56ae2e0245cb754d35'] = 'Editar';
|
||||
$_MODULE['<{ets_megamenu}prestashop>item-column_f722b0bbb0ecaa598bf84b6568ac826b'] = 'Borrar columna';
|
||||
$_MODULE['<{ets_megamenu}prestashop>item-column_f2a6c498fb90ee345d997f888fce3b18'] = 'Borrar';
|
||||
$_MODULE['<{ets_megamenu}prestashop>item-column_53f6b8619350888a722e39b25414b909'] = 'Duplicar columna';
|
||||
$_MODULE['<{ets_megamenu}prestashop>item-column_ed75712b0eb1913c28a3872731ffd48d'] = 'Duplicar';
|
||||
$_MODULE['<{ets_megamenu}prestashop>item-column_c3e7864531017869d04d401e5771cde4'] = 'Editar columna';
|
||||
$_MODULE['<{ets_megamenu}prestashop>item-column_7dce122004969d56ae2e0245cb754d35'] = 'Editar';
|
||||
$_MODULE['<{ets_megamenu}prestashop>item-column_2ff8071bcd15a31f9a743f1b06d0d00f'] = 'Añadir bloque';
|
||||
$_MODULE['<{ets_megamenu}prestashop>item-menu_2b5ad90c840d138033f8e9641b17e7b7'] = 'Borrar menú';
|
||||
$_MODULE['<{ets_megamenu}prestashop>item-menu_f2a6c498fb90ee345d997f888fce3b18'] = 'Borrar';
|
||||
$_MODULE['<{ets_megamenu}prestashop>item-menu_630e6ef08d01ef5cb9e3397e8db5e994'] = 'Duplicar menú';
|
||||
$_MODULE['<{ets_megamenu}prestashop>item-menu_ed75712b0eb1913c28a3872731ffd48d'] = 'Duplicar';
|
||||
$_MODULE['<{ets_megamenu}prestashop>item-menu_8a165af354761ba57a7f9413cf7b010a'] = 'Editar menú';
|
||||
$_MODULE['<{ets_megamenu}prestashop>item-menu_d3d2e617335f08df83599665eef8a418'] = 'Cerrar';
|
||||
$_MODULE['<{ets_megamenu}prestashop>item-menu_67b766b66c1b187ef3ad796aabf1753b'] = 'Añadir pestaña';
|
||||
$_MODULE['<{ets_megamenu}prestashop>item-menu_7dce122004969d56ae2e0245cb754d35'] = 'Editar';
|
||||
$_MODULE['<{ets_megamenu}prestashop>item-menu_b61b8f498d489f2e2b916b887b7062bc'] = 'Añadir columna';
|
||||
$_MODULE['<{ets_megamenu}prestashop>item-tab_a03ce9e73e3b0b18331ef0dcf4f410e1'] = 'Borrar pestaña';
|
||||
$_MODULE['<{ets_megamenu}prestashop>item-tab_f2a6c498fb90ee345d997f888fce3b18'] = 'Borrar';
|
||||
$_MODULE['<{ets_megamenu}prestashop>item-tab_b04cb66e24ece03f1d36dbc09a2945ea'] = 'Duplicar pestaña';
|
||||
$_MODULE['<{ets_megamenu}prestashop>item-tab_ed75712b0eb1913c28a3872731ffd48d'] = 'Duplicar';
|
||||
$_MODULE['<{ets_megamenu}prestashop>item-tab_2da9b93934e51331be3c8ccf3428e001'] = 'Editar pestaña';
|
||||
$_MODULE['<{ets_megamenu}prestashop>item-tab_7dce122004969d56ae2e0245cb754d35'] = 'Editar';
|
||||
$_MODULE['<{ets_megamenu}prestashop>item-tab_d3d2e617335f08df83599665eef8a418'] = 'Cerrar';
|
||||
$_MODULE['<{ets_megamenu}prestashop>item-tab_b61b8f498d489f2e2b916b887b7062bc'] = 'Añadir columna';
|
||||
$_MODULE['<{ets_megamenu}prestashop>megamenu_b61541208db7fa7dba42c85224405911'] = 'Menú';
|
||||
$_MODULE['<{ets_megamenu}prestashop>menu-html_b61541208db7fa7dba42c85224405911'] = 'Menú';
|
||||
$_MODULE['<{ets_megamenu}prestashop>menu-html_0557fa923dcee4d0f86b1409f5c2167f'] = 'Regreso';
|
||||
$_MODULE['<{ets_megamenu}prestashop>product-list-17_c91e4ee170226d66e90f99ba917e4c20'] = 'Vista rápida';
|
||||
$_MODULE['<{ets_megamenu}prestashop>product-list-17_8a48e3d7293fc9e2f774581231418412'] = 'No hay producto disponible.';
|
||||
$_MODULE['<{ets_megamenu}prestashop>product-list-mini_8a48e3d7293fc9e2f774581231418412'] = 'No hay producto disponible';
|
||||
$_MODULE['<{ets_megamenu}prestashop>product-list_c91e4ee170226d66e90f99ba917e4c20'] = 'Vista rápida';
|
||||
$_MODULE['<{ets_megamenu}prestashop>product-list_2d0f6b8300be19cf35e89e66f0677f95'] = 'Añadir a la cesta';
|
||||
$_MODULE['<{ets_megamenu}prestashop>product-list_03c2e7e41ffc181a4e84080b4710e81e'] = 'Nuevo';
|
||||
$_MODULE['<{ets_megamenu}prestashop>product-list_bb63f16d5ebfcfa8a651642a7bb2ea5c'] = '¡Venta!';
|
||||
$_MODULE['<{ets_megamenu}prestashop>product-list_03de921a8ea82897e13d33d66c28b4db'] = 'Solo online';
|
||||
$_MODULE['<{ets_megamenu}prestashop>product-list_ca2bf12169883f4982d8fe34b7e3c618'] = '¡Precio reducido!';
|
||||
$_MODULE['<{ets_megamenu}prestashop>product-list_69d08bd5f8cf4e228930935c3f13e42f'] = 'En stock';
|
||||
$_MODULE['<{ets_megamenu}prestashop>product-list_b55197a49e8c4cd8c314bc2aa39d6feb'] = 'Agotado';
|
||||
$_MODULE['<{ets_megamenu}prestashop>product-list_cb3c718c905f00adbb6735f55bfb38ef'] = 'Producto disponible con diferentes opciones';
|
||||
$_MODULE['<{ets_megamenu}prestashop>product-list_216adaf4e98dc62ec3abeab51b9fc57f'] = 'Por favor seleccione por lo menos un producto';
|
||||
$_MODULE['<{ets_megamenu}prestashop>product-list_90723749917a82bf3ff8a73247d32ffb'] = 'No puede agregar más de %d producto(s) a la comparación de productos';
|
||||
$_MODULE['<{ets_megamenu}prestashop>product-list_8a48e3d7293fc9e2f774581231418412'] = 'No hay producto disponible';
|
||||
351
modules/ets_megamenu/translations/fr.php
Normal file
@@ -0,0 +1,351 @@
|
||||
<?php
|
||||
|
||||
global $_MODULE;
|
||||
$_MODULE = array();
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_968c8ef65d5d5d87254964b78a2e02f5'] = 'Mega Menu PRO ';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_b04f52f3454c7b0d75cdd09314eb0b52'] = 'Visual glisser-déposer constructeur de méga menus';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_fc029308351f31f8fe047451beb1835b'] = 'THÈME PAR DEFAUT FONT';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_8a165af354761ba57a7f9413cf7b010a'] = 'Éditer le menu ';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_f6c4ed278c3f8a43a2b4913a1d61c6d5'] = 'Ajouter un menu';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_c9cc8cce247e49bae79f15173ce97354'] = 'Enregistrer';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_02674a4ef33e11c879283629996c8ff8'] = 'Direction';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_c1b5fa03ecdb95d4a45dd1c40b02527f'] = 'Horizontal';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_06ce2a25e5d12c166a36f654dbea6012'] = 'Vertical';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_782ee9a18759cfa9ee20ed12a8bacce9'] = 'Couleur du texte du menu vertical';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_6f91f9164ea25b4a4b1b00d4e9395154'] = 'Couleur de fond du menu vertical';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_badc91809c2dc1fecabe778ecfc3bd9f'] = 'Toujours ouvrir le menu vertical';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_7ebf4765a04e99362230fc04eac86480'] = 'Appliquer uniquement pour ordinateur de bureau';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_93cba07454f06a4a960172bbd6e2a435'] = 'Oui';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_bafd7322c6e97d25b6299b5d6fe8920b'] = 'Non';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_0cdbc3ce6753e2083253ef0ff3753347'] = 'Supprimer la bordure';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_2641b32b86cfe616962d782685363198'] = 'Largeur de l\'élément de menu';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_4ade9e3bb42a3ad0b29de42915e05e04'] = 'Utilisez \"px\" ou \"%\" ou \"vw\". Par exemple: \"20%\" ou \"230px\" ou \"80vw\"';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_62b6172b996ec621eee5722af8a1624b'] = 'Largeur d\'élément de onglet';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_231131cf0e206f235339643f8350739a'] = 'Type de lien de menu';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_a7140e841df723ac623f174ba5aa088a'] = 'Lien personnalisé';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_622f3c75de9f3481ffc58c1f292c1c2b'] = 'Page de CMS';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_bbaff12800505b22a853e8b7f4eb6a22'] = 'Contact';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_3adbdb3ac060038aa0e6e6c138ef9873'] = 'Catégorie';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_c0bd7654d5b278e65f21cf4e9153fdb4'] = 'Fabricant';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_ec136b444eede3bc85639fac0dd06229'] = 'Fournisseur';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_8cf04a9734132302f96da8e113e80ce5'] = 'Page d\'accueil';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_b78a3223503896721cca1303f776159b'] = 'Titre';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_ccff5fe10a335f4884d54e146e68b80d'] = 'Police de l\'icône du menu';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_a579ead35787d34de93658bab29b8de5'] = 'Utilisez la classe \"font awesome\". Exemple: fa-bars, fa-plus, ...';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_81a36689f3786c62f31b872020afc9dc'] = 'Image de l\'icône du menu';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_67c0dcafa33f4e672d2b1fa59fde1cd3'] = 'Taille recommandée: 20 x 20';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_546752887fe72e4c110341f2a780e929'] = 'Alignement du sous-menu';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_9128ab2a4d2b92815cd4db44baab7077'] = '(Mise en page LTR)';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_06b9281e396db002010bde1de57262eb'] = 'Auto';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_945d5e233cf7d6240f6b783b36a374ff'] = 'Gauche';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_92b09c7c48c520c3c55e497875da437c'] = 'Droit';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_f5df0297bedf69afcbe26b8ab7805c9e'] = 'L\'alignement du sous-menu est automatiquement inversé dans la mise en page RTL';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_22e10f4af52114387f314fee00020250'] = 'Afficher les onglets en pleine largeur';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_358f993f450ec503a6ddf8915dc014ea'] = 'Largeur du sous-menu';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_3b26b2a6e99c6e75c9f7a6749b0652af'] = 'Utilisez \"px\" ou \"%\" ou \"vw\". Exemple \"100%\" ou \"100px\" ou \"80vw\"';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_95ff0dbd3f00cfcd9ee25dadae9911c0'] = 'Classe personnalisée';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_9a13acfbbe8803801f8f291919352eee'] = 'Texte d\'alerte de bulle';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_1ed3f9c6f7037274596ab54ea292d5a7'] = 'Nouveau, Vente, Hot.. Laissez ce champ vide si vous ne souhaitez pas créer d\'alerte de bulle pour ce menu.';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_fc1c9ff6972ea2b89de122633d9a9aaf'] = 'Couleur du texte d\'alerte de bulle';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_423fadd8b2c94c6218a24c87117e7418'] = 'Couleur de fond alerte bulle';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_69ee1afc9b3d02e53d9f733c1993b568'] = 'Image de fond';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_94af0bd346f7900797e8ab43f9922e39'] = 'Position de fond';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_4f1f6016fc9f3f2353c0cc7c67b292bd'] = 'Centre';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_a4ffdcf0dc1f31b9acaf295d75b51d00'] = 'Haut';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_d3708546a929dfcf66eaeaba794486eb'] = 'En haut à droite';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_a4d0d101d6a34bf80ffeee601c3ff84a'] = 'En haut à gauche';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_2ad9d63b69c4a10a5cc9cad923133bc4'] = 'Bas';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_b67554192c50f4f6a4c1bd4797f6c3f8'] = 'En bas à gauche';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_5968e3c37145f57587afcba727d2b120'] = 'En bas à droite';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_75d6ef775a2104c57c52706d869a86be'] = 'Ouvrir un lien dans un nouvel onglet';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_06f1ac65b0a6a548339a38b348e64d79'] = 'Ordre de tri';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_00d23a76e43b46dae9ec7aa9dcbebb32'] = 'Activé';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_2da9b93934e51331be3c8ccf3428e001'] = 'Onglet modifier';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_67b766b66c1b187ef3ad796aabf1753b'] = 'Ajouter un onglet';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_c90a53528da75f001e1d69dd844f0993'] = 'Police d\'icône de onglet';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_840ec47f8515d48297c88a335e872fb3'] = 'Utilisez la classe \"font awesome\". Exemple: fa-bars, fa-plus, ...';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_3f30215d52c4851b8f06c8f1c7a0bd22'] = 'Image d\'icône de onglet';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_4d66066ad0f21b108844607a247f1112'] = 'Largeur du contenu de l\'onglet';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_2b5f489e77e74559e97bd43e979a4337'] = 'Afficher le contenu de l\'onglet du haut';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_b61541208db7fa7dba42c85224405911'] = 'Menu';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_c3e7864531017869d04d401e5771cde4'] = 'Modifier la colonne';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_b61b8f498d489f2e2b916b887b7062bc'] = 'Ajouter une colonne';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_d83778cd6dc223fd79bb07d598d6223c'] = 'Largeur de colonne taille';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_e4c38d6d45baf080943d323dd51a2ce8'] = 'Se casser';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_aa5f289085a24b28d52c9113555e3b8b'] = 'Se casser de cette colonne à la nouvelle ligne';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_5c6ba25104401c9ee0650230fc6ba413'] = 'Onglet';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_4f358ab0d7f1d9623bdcad1c346bd0f6'] = 'Éditer le bloc';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_2ff8071bcd15a31f9a743f1b06d0d00f'] = 'Ajouter un bloc';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_b5a812dff3c33b63cf77f0ce007da42e'] = 'Type de bloc';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_8b407e232af57b6d8579d7ed0626c091'] = 'Texte/HTML';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_be53a0541a6d36f6ecb879fa2c584b08'] = 'Image';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_068f80c7519d0528fb08e82137a72131'] = 'Des produits';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_1976d7f704de389d9fe064e08ea35b2d'] = 'Colonne';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_cf23cd9379acd73edb90d1076efc862c'] = 'Lien du titre';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_5d29e81352b150a3e306eb985f1735a8'] = 'Laissez ce champ vide si vous ne souhaitez pas ajouter de lien vers le titre du bloc';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_2377be3c2ad9b435ba277a73f0f1ca76'] = 'Les fabricants';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_01fda57aa6c7e9f07f5aa36b108e95cb'] = 'Commandé par';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_809ab7c071cedac33b6ee810e32fb5f0'] = 'Les nom A-Z';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_d443ba2c0e31bbf213c36dfe1f81ac74'] = 'Les nom Z-A';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_f66306bc4b2f9bac47088451fc0bb476'] = 'Le plus récent fabricant en premier';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_3319557c87587792f7907b4a5881a095'] = 'Afficher l\'image du fabricant';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_d02b2fc8af1142137d63860b0b638e7e'] = 'Afficher le nom du fabricant';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_c276bdf15015f63a89483dbbbfe6edd9'] = 'Fabricants par rangée';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_c4ca4238a0b923820dcc509a6f75849b'] = '1';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_c81e728d9d4c2f636f067f89cc14862c'] = '2';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_eccbc87e4b5ce2fe28308fd9f2a7baf3'] = '3';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_a87ff679a2f3e71d9181a67b7542122c'] = '4';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_e4da3b7fbbce2345d7772b0674a318d5'] = '5';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_1679091c5a880faf6fb5e6087eb1b2dc'] = '6';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_8f14e45fceea167a5a36dedd4bea2543'] = '7';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_c9f0f895fb98ab9159f51fd0297e236d'] = '8';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_45c48cce2e2d7fbdea1afc51c7c6ad26'] = '9';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_d3d9446802a44259755d38e6d163e820'] = '10';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_6512bd43d9caa6e02c990b0a82652dca'] = '11';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_c20ad4d76fe97759aa27a0c99bff6710'] = '12';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_1814d65a76028fdfbadab64a5a8076df'] = 'Fournisseurs';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_bae05f8f16fa0f42562df90f6713237e'] = 'Le plus récent fournisseur en premier';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_6f34c552ec2167dff966202ccc68186b'] = 'Afficher l\'image des fournisseurs';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_10dc3660f72acc9b05c8742f2c8d301a'] = 'Afficher le nom du fournisseur';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_2bc7519ec199311e82717bef59ef6450'] = 'Fournisseurs par rangée';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_af1b98adf7f686b84cd0b443e022b7a0'] = 'Les catégories';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_63ce794099274c72d3844c1296a92db0'] = 'Ordre par défaut';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_0bb450ed086ce232068db7852f99ded2'] = 'Nouvelle catégorie en premier';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_ccb48f393023eee753f69208f038e0f3'] = 'Pages CMS';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_2386dbe21fd6472485a7e4a871160217'] = 'HTML/Contenu du texte';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_9ce38727cff004a058021a6c7351a74a'] = 'Lien de l\'image';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_66110e941b9796cdaf57c8b1aadb6739'] = 'Laissez ce champ vide si vous ne souhaitez pas ajouter de lien vers l\'image';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_3d19aea4e2d382e85165bbf71cef1e05'] = 'Type de produit';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_9ff0635f5737513b1a6f559ac2bff745'] = 'Nouveaux produits';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_7f55dc18fd28be03bea9991647014e92'] = 'Produits populaires';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_8af828f302b91d1f905dc35acc43efaa'] = 'Produits speciaux';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_01f7ac959c1e6ebbb2e0ee706a7a5255'] = 'Meilleures ventes';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_43f03332c7f75a3056cfa2e29bda6bba'] = 'Produits spécifiques';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_437ac95a91364eb49587af5e146b1745'] = 'Recherche de produits';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_5221812aefa6842bf09217ee8dc0fea8'] = 'Recherche de produit par ID, nom ou référence';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_3e22403f8e252c77a37d5262ccb45159'] = 'Compter produits';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_3812464e9c462762cb7f1b1f3a8f0e30'] = 'article(s)';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_dbb7eaea6542941545255af0c27f0eaa'] = 'Activer la description du produit';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_d4ea25e96150caf6c2e412fa3123a78c'] = 'Activer l\'horloge du compte à rebours';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_9e3b95d7c76b34fc36feceba25606caf'] = 'Afficher titre';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_254f642527b45bc260048e30704edb39'] = 'Configuration';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_b20c2b0f4bb2c049ec080151b6322544'] = 'Accrocher à';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_d2679b3aa8ca60a149888dd58c7d148b'] = 'Hook par défaut';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_678314871893087a13885397b9359d70'] = 'Hook personnalisé';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_2fcc984acd8008a708c1afca4ac47203'] = 'Placez {hook h = \'displayMegaMenu\'} sur le fichier tpl où vous voulez afficher le méga menu';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_9c1816d94b21bcc4014605193aaa2e9c'] = 'Effet de transition de sous-menu';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_7a1920d61156abc05a60135aefe8bc67'] = 'Défaut';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_265eea5b45c01587fca2ac8d73cf7d91'] = 'Glisse vers le bas';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_cb7c3f14014406b90b14f6ec63b9c42c'] = 'Réduire';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_668857a25768ba031dcb062e53e3f8be'] = 'Fondu vers le haut';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_f5ca4abce85e2dddb0342d0bae3a7270'] = 'Zoomer sur';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_ceec1026d2e581e6af515f964be5722b'] = 'Mode de direction de la langue';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_3a3f1cf30e8078032ec76a5ea7075b34'] = 'Détection automatique LTR ou RTL';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_3e35661f311d49f66eccb1bc2ea4de46'] = 'LTR';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_efe01da942ed68b700b911f5a1b131a7'] = 'RTL';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_61f51aeeeb6012edfe39e1280290b586'] = 'Type de menu mobile';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_c8df43648942ec3a9aec140f07f47b7c'] = 'Flottant';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_764ff8d94d40c2ecfca7141e7451aa23'] = 'Plein écran';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_2fa0d3cf7d808e682832cf1b64f68288'] = 'Type d\'image miniature';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_3558979e4ac907db936a4caf9b38bb95'] = 'Inclure des sous-catégories';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_034d61901e03810153458d8fd9ee0e32'] = 'Activer le menu collant';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_eca6891198a19670c4caefb49a8272d2'] = 'Masquer le menu collant sur le mobile';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_150f2f0095524e186332edc6a42bdc17'] = 'Cliquez sur le texte du menu pour ouvrir son sous-menu';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_833fa5ca879c27de92eb6f9b2edbfe6b'] = 'Appliquer pour mobile uniquement';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_e4978520c0a7db22d476049fc48a2811'] = 'Afficher l\'icône du menu vertical sur le mobile';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_4dcba203e12a944fd99c17b3df6019d1'] = 'Afficher l\'élément de menu actif';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_744a24c1691e7e80b55e3a9f3c4c6601'] = 'Activer l\'effet de superposition gris pour le sous-menu';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_09cdd6a7321c64bae05b8cca859f1461'] = 'Activer le cache';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_5f00c519230bb042f8b9a4b0c291fba3'] = 'Durée de vie du cache';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_6a7e73161603d87b26a8eac49dab0a9c'] = 'Heures';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_d4d0ee9985bf14169e809b164524b0b0'] = 'Type de mise en page';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_b188fdc8fbf2d384eb42079bdf92438e'] = 'Mise en page 1';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_896b004b0000eb87455719ab8305540f'] = 'Mise en page 2';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_5158e7182521be6e4f63ed2ddcdbeff9'] = 'Mise en page 3';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_5b0c56d71a5e571c9dfcb14658238ec1'] = 'Mise en page 4';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_495211a35a31e2216de73afe812a227e'] = 'Mise en page 5';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_16bf11530bc42fe5fad63a29cc456561'] = 'Police de titre';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_857cb35a9382f11dac28b9d811455085'] = 'Utilisez la police par défaut de votre thème ou sélectionnez une police Google dans la liste.';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_fd1c87ab22930765490fd537abfd719a'] = 'Taille de la police de titre';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_f530355f6159150fe5ab070472c164f4'] = 'Police de texte générale';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_94cd30584ac9303f44905f69bf7aa11b'] = 'Taille du titre du sous-menu';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_1aec5909a0a51e1412ec99e87b2543b0'] = 'Taille de la police du texte général';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_ecc1376febdbaf4eb985d4885b6aaef1'] = 'Fond de menu';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_c541248912bfebcfa4bc75f59df6be41'] = 'Couleur du texte du menu';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_c1e4a52685d5f2a8a8405ec14a6d837e'] = 'Couleur du texte du menu quand passer sa souris au-dessus de';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_ad5f165402aa9097721ea82804acf11b'] = 'Couleur du fond de menu quand passer sa souris au-dessus de';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_ceb2fbe7f1354d42afe52a3e019cc984'] = 'Fond de sous-menu';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_a5c824ab7b791821e4821236f8064158'] = 'Titre du sous-menu';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_8c97c96d883731fb5c65225111090746'] = 'Couleur du texte du sous-menu';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_c2c2e915af5b7dbe47dc3246132217d3'] = 'Couleur du lien de sous-menu quand passer sa souris au-dessus de';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_4ee26c6658a45d86db563efa2c8b3b4b'] = 'Arrière-plan de la barre de menus sur mobile';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_13ce19b281fa85fb7eaa1b9cff6cd07c'] = 'Couleur de la barre de menu sur le mobile';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_1c2a4782352d563174cd209b564faecd'] = 'Afficher le panier';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_f735cba10d0289cf423c69c82b3417cf'] = 'Non recommandé! Pour les utilisateurs avancés uniquement. Le menu peut être cassé lorsque cette option est activée (en particulier sur un thème personnalisé). Vous devez avoir une connaissance HTML / CSS pour affiner les problèmes. S\'il vous plaît, comprenez qu\'il ne s\'agit pas d\'assistance gratuite, cela dépend de votre thème.';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_c270de6254a4416cbca009b96f29d340'] = 'Afficher le champ de recherche';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_2c4ed1877b9154ce1680987b434d9604'] = 'Non recommandé! Pour le module de recherche par défaut et les utilisateurs avancés uniquement. Le menu peut être cassé lorsque cette option est activée (en particulier sur un thème personnalisé). Vous devez avoir une connaissance HTML / CSS pour affiner les problèmes. S\'il vous plaît, comprenez qu\'il ne s\'agit pas d\'assistance gratuite, cela dépend de votre thème.';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_525736a04a1410119f2e4d42f06982ef'] = 'Ouvrir le champ de recherche par défaut';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_d84dd66a1934224777c516c5d6543d99'] = 'Afficher les liens d\'informations utilisateur';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_45879c07f04dd122242168f6d742b357'] = 'Texte HTML personnalisé';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_ce68ba30cf3867122ead2d8ccdf0b8a2'] = 'Vous devez activer le module Mega menu PRO pour configurer ses fonctionnalités';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_62f5d708d6ad1fa1ddd9429a65cccbea'] = 'Toutes catégories';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_a08e5170f1ac13ffbc4470b546443ac5'] = 'Indispensable';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_d9d7f6dc5cec2d96fdbdc731ee91f547'] = 'Téléchargements!';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_276ee9e858f36e807d934b922a21a98d'] = 'Voir tous nos modules';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_b548e7fcbe083ebbbb369960bfb0e9a0'] = 'Coup de coeur';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_ea18b0b61adc5f34ddc205cdaa344ee3'] = 'Elu par nos marchands';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_d91586ce336b874e8b4e6b1fb6731628'] = 'Superhero Vendeur';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_e46c3fa146c7cecb1162ceeef0435e94'] = 'Partenaire créateur de modules';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_02d4482d332e1aef3437cd61c9bcc624'] = 'Contacter';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_d3d2e617335f08df83599665eef8a418'] = 'Fermer';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_eba7393526afaf1836ba1451af0fa021'] = '12/12 (Plein)';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_b5177504293451c17fe71226af6659ac'] = 'Supprimer l\'image réussie';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_f6fefe344352f0815e6f53ad8f97ae76'] = 'Article supprimé';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_08c9975e2e9fb8c1a954c73196a9d2bb'] = 'Article dupliqué';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_d8dfbb603a652a981303363356b66f78'] = 'Impossible de dupliquer les éléments. Un problème inconnu est arrivé';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_180641b777082af315e11f11136ef62a'] = 'Cache effacé';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_93cbeaa38add6ac51a2c565146ba111b'] = 'Le menu a été importé avec succès. Cette page sera rechargée dans 3 secondes';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_c986f2e82ba2d956bd3a5df143fc29e5'] = 'La configuration a été réinitialisée avec succès. Cette page sera rechargée dans 3 secondes';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_0a5fa53f3f20f67f98bd6c3b16df059d'] = 'est requis';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_248336101b461380a4b2391a7625493d'] = 'Enregistré';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_ffe6b15f8499c865dc39d0795d882c35'] = 'Une erreur inconnue š\'est produite';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_7bb83623723e351067bfb431b5428428'] = 'L\'objet est vide';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_dcf3bf538d394728706dbc710865d01b'] = 'Le champ ñ\'est pas valide';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_e155eaf44266d6c55a6ddd39c3b3c34b'] = 'Le fichier de téléchargement ne peut pas dépasser 100 Mo';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_df02b8ac4dc8f7ec5a0b1364a911b64b'] = 'Le nom de fichier existe déjà. Essayez de renommer le fichier et de télécharger à nouveau';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_ed03b3ac2f9dc77202649d1cd6c094c6'] = 'Impossible de télécharger le fichier';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_7cc92687130ea12abb80556681538001'] = 'Une erreur s\'est produite lors du processus de téléchargement d\'image.';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_c7d3d5ef28a517e88bd85cbd2b5a13fc'] = 'Image supprimée';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_41e62dd32e8ad4c8050b561f173a12e1'] = 'Impossible de supprimer l\'élément en raison d\'un problème technique inconnu';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_998b344cff693ad388a14ba89b1523c7'] = 'est invalide';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_b8b3ae1bf635742667e9f3f55dc7e646'] = 'Le texte à bulles ne peut pas dépasser 50 caractères';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_a464ea8d48572d8f0e5a260c55a0178a'] = 'La couleur du texte d\'alerte de bulle est requise';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_bba4d9a657b10e609bd722a5142eb16b'] = 'La couleur de fond de l\'alerte de bulle est requise';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_deb4ef4d18b545ba2a3a3fd5bc155e5f'] = 'Un lien personnalisé est requis';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_d8a8a612dde9d851e8e33bb8eadea0e1'] = 'Veuillez sélectionner une catégorie';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_240213c123e4ef2ba0a5283068e26605'] = 'Veuillez sélectionner un fabricant';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_3adaf6c593f1ea64d6468e4fd2fc003e'] = 'Veuillez sélectionner un fournisseur';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_3f54e98cb43cb017376763427e908485'] = 'La page CMS est requise';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_b5ce00d7b254ecbb2c242cf399061c15'] = 'Le type de lien ñ\'est pas valide';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_e234b18943bbedcc4afc6d30a45e989e'] = 'La largeur du sous-menu doit être comprise entre 10 et 100';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_84b755bdeb3f6df297b84db26746912b'] = 'Le HTML/texte est requise';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_01e0f317de80a5d8b39573414054b976'] = 'Les pages CMS est requise';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_9fcbc8e58867bb8f75c6564157e38fc3'] = 'Les catégories sont requise';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_29174bafda315dfbab561de3ceebbada'] = 'Les fabricants sont requis';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_75e6fd9bf0a7eeae37bf8aae6d117907'] = 'Les fournisseurs sont requis';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_0e14bfaec163534638152aa11ec70ad4'] = 'L\'image est requise';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_71074f1d700fdd3e91e17d53e44029e2'] = 'Le type de bloc ñ\'est pas valide';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_56784cf39880e42f866a225d861b92c2'] = 'Veuillez saisir les identifiants de produit';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_9b2304e077bc5dc294ea2201ef1fd6ee'] = 'Nombre de produits requis';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_307b4f3a12df186dc03a7d316b6d3ee8'] = 'Les ID de produit ne sont pas valides. Veuillez entrer les ID de produit séparés par une virgule (,)';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_1067c3f730599619764fce05481566ce'] = 'Le nombre de produits ñ\'est pas valide';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_5fd13c2b89a6eaaa4614bfe258f6c40f'] = 'Le fichier zip semble être cassé';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_3aecef48e0417ca1cc03066a3f16171d'] = 'Le fichier zip ñ\'existe pas';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_078b9a20061a21f2b47c1a4b6844df66'] = 'Le fichier menu-info.xml ñ\'existe pas';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_f55ab24ab5c393461bca98c6642bac32'] = 'Impossible d\'ouvrir le fichier zip. Il pourrait être cassé ou endommagé';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_d664d410c31a3c0d868319fee5bab57f'] = 'Impossible d\'extraire les données du fichier zip';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_ee7151c4fef893a18e167c6807fb0535'] = 'Ni Data.xml ni Config.xml n\'existent';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_c7c406ae6cc6e6390aca6b5e0edc7a3f'] = 'Impossible de créer le fichier config.xml.';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_3dc9d3baf90f74a798cf40dd61662d36'] = 'Impossible de créer le fichier data.xml.';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_352b2c294ccaee9cb46d7384c5eb4384'] = 'Impossible de créer le fichier Menu-Info.xml.';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_1031371f906a92891140f384d04b3421'] = 'Une erreur s\'est produite lors de la génération de l\'archive';
|
||||
$_MODULE['<{ets_megamenu}prestashop>form_39acea19424caebfa3e95fd467ac6e11'] = 'Tout sélectionner/déselectionner';
|
||||
$_MODULE['<{ets_megamenu}prestashop>form_ec9da5db23d32f44f4031df5bd98cb11'] = 'Icône parcourir';
|
||||
$_MODULE['<{ets_megamenu}prestashop>form_a6a3c692b271fcc9c06e1758590384cc'] = 'Effacer le cache du menu';
|
||||
$_MODULE['<{ets_megamenu}prestashop>form_63f57742717e6101a066d7275360332d'] = 'Image téléchargée:';
|
||||
$_MODULE['<{ets_megamenu}prestashop>form_687cbf3e103f4ec4facecab72e3008a4'] = 'Cliquez pour voir l\'image en taille réelle';
|
||||
$_MODULE['<{ets_megamenu}prestashop>form_a8d009b33e7c67b45cf2f14fe6d419ad'] = 'Réinitialiser uniquement la configuration par défaut. Les données du menu ne seront pas perdues';
|
||||
$_MODULE['<{ets_megamenu}prestashop>form_526d688f37a86d3c3f27d0c5016eb71d'] = 'Remettre';
|
||||
$_MODULE['<{ets_megamenu}prestashop>form_16bfbf9c462762cf1cba4134ec53c504'] = 'Chargement';
|
||||
$_MODULE['<{ets_megamenu}prestashop>form_4e11db406c6c9f234fe8579cc9bc5ef6'] = 'Sauvegarde';
|
||||
$_MODULE['<{ets_megamenu}prestashop>form_0db377921f4ce762c62526131097968f'] = 'Général';
|
||||
$_MODULE['<{ets_megamenu}prestashop>form_1afa74da05ca145d3418aad9af510109'] = 'Désign';
|
||||
$_MODULE['<{ets_megamenu}prestashop>form_80a77a0d27c15659831d0d50bbed3ab0'] = 'Fonctionnalités supplémentaires';
|
||||
$_MODULE['<{ets_megamenu}prestashop>admin-form_d3d2e617335f08df83599665eef8a418'] = 'Fermer';
|
||||
$_MODULE['<{ets_megamenu}prestashop>admin-form_c3bf447eabe632720a3aa1a7ce401274'] = 'Ouvrir';
|
||||
$_MODULE['<{ets_megamenu}prestashop>admin-form_f2a6c498fb90ee345d997f888fce3b18'] = 'Supprimer';
|
||||
$_MODULE['<{ets_megamenu}prestashop>admin-form_7dce122004969d56ae2e0245cb754d35'] = 'Éditer';
|
||||
$_MODULE['<{ets_megamenu}prestashop>admin-form_474c1219b0e41415e1115456a362ef4d'] = 'Supprimer cette article';
|
||||
$_MODULE['<{ets_megamenu}prestashop>admin-form_0164b35f3cbc5cbf9bf58abeb4bc14df'] = 'Ajouter un nouveau menu';
|
||||
$_MODULE['<{ets_megamenu}prestashop>admin-form_8a165af354761ba57a7f9413cf7b010a'] = 'Éditer le menu';
|
||||
$_MODULE['<{ets_megamenu}prestashop>admin-form_4220caf81d84096b21f1c382d9f2104c'] = 'Ajouter une nouvelle colonne';
|
||||
$_MODULE['<{ets_megamenu}prestashop>admin-form_c3e7864531017869d04d401e5771cde4'] = 'Éditer la colonne';
|
||||
$_MODULE['<{ets_megamenu}prestashop>admin-form_137e8451b75e1e21b42f174538cd5cb0'] = 'Supprimer cette colonne';
|
||||
$_MODULE['<{ets_megamenu}prestashop>admin-form_4fd76a4441a519f2a61252085d438b0f'] = 'Supprimer cette bloc';
|
||||
$_MODULE['<{ets_megamenu}prestashop>admin-form_d4bde2ef599c3bc55a57e23427eabbd2'] = 'Éditer cette bloc';
|
||||
$_MODULE['<{ets_megamenu}prestashop>admin-form_bd6b819a39fdcd26de086e9f352c1fa0'] = 'Ajouter un nouveau bloc';
|
||||
$_MODULE['<{ets_megamenu}prestashop>admin-form_ed75712b0eb1913c28a3872731ffd48d'] = 'Dupliquer';
|
||||
$_MODULE['<{ets_megamenu}prestashop>admin-form_a2b8f8667e7bb8cb9ea87526c637c93d'] = 'Dupliquer cette menu';
|
||||
$_MODULE['<{ets_megamenu}prestashop>admin-form_a2c3cdca64334e4f378d97ff72608b36'] = 'Dupliquer cette colonne';
|
||||
$_MODULE['<{ets_megamenu}prestashop>admin-form_667398242bf9a519ce518c772bb34e1f'] = 'Dupliquer cette bloc';
|
||||
$_MODULE['<{ets_megamenu}prestashop>admin-form_18d043a5ec966d214566f4dda8d31c01'] = 'L\'image est invalide';
|
||||
$_MODULE['<{ets_megamenu}prestashop>admin-form_c93e7ab5c20aab9f777ce2ac2655c700'] = 'Aperçu en mode onglet';
|
||||
$_MODULE['<{ets_megamenu}prestashop>admin-form_5c6ba25104401c9ee0650230fc6ba413'] = 'Onglet';
|
||||
$_MODULE['<{ets_megamenu}prestashop>admin-form_d0c92a6168f5a6301e8c75cc787a9c10'] = 'Aperçu en mode liste';
|
||||
$_MODULE['<{ets_megamenu}prestashop>admin-form_4ee29ca12c7d126654bd0e5275de6135'] = 'Liste';
|
||||
$_MODULE['<{ets_megamenu}prestashop>admin-form_3e35661f311d49f66eccb1bc2ea4de46'] = 'LTR';
|
||||
$_MODULE['<{ets_megamenu}prestashop>admin-form_efe01da942ed68b700b911f5a1b131a7'] = 'RTL';
|
||||
$_MODULE['<{ets_megamenu}prestashop>admin-form_f8d1d022d3f7645b4b0dfe4f6de3efbc'] = 'Importer/Exporter';
|
||||
$_MODULE['<{ets_megamenu}prestashop>admin-form_f4f70727dc34561dfde1a3c529b6205c'] = 'Réglages';
|
||||
$_MODULE['<{ets_megamenu}prestashop>admin-form_715eafb80fc4c2e5251a46012b0ef9e4'] = 'Autres modules';
|
||||
$_MODULE['<{ets_megamenu}prestashop>admin-form_c4086ec40444dc78cf96bb5599f6a402'] = 'Réalisés par ETS-Soft';
|
||||
$_MODULE['<{ets_megamenu}prestashop>admin-form_f6c4ed278c3f8a43a2b4913a1d61c6d5'] = 'Ajouter un menu';
|
||||
$_MODULE['<{ets_megamenu}prestashop>admin-form_deba57aebf40e70cb31644eb6ee69498'] = 'Exporter le contenu du menu';
|
||||
$_MODULE['<{ets_megamenu}prestashop>admin-form_19976a024d14b37b816064a67c64732e'] = 'Menu d\'exportation';
|
||||
$_MODULE['<{ets_megamenu}prestashop>admin-form_b5112dd068d158561df29735df378eef'] = 'Exporter toutes les données de menu, y compris les images, le texte et la configuration';
|
||||
$_MODULE['<{ets_megamenu}prestashop>admin-form_b8c534fb8ac5166939ccce4525eb148f'] = 'Importer les données du menu';
|
||||
$_MODULE['<{ets_megamenu}prestashop>admin-form_4f92db9fb554ed1d896ef872346e345f'] = 'Paquet de données de menu';
|
||||
$_MODULE['<{ets_megamenu}prestashop>admin-form_7726d9dd8129ac1ed3eaf1c5da96ae28'] = 'Effacer tous les menus avant d\'importer';
|
||||
$_MODULE['<{ets_megamenu}prestashop>admin-form_377119d4cf2d6af97ac466d2954d6e77'] = 'Importer des données';
|
||||
$_MODULE['<{ets_megamenu}prestashop>admin-form_20b0d75c1373adc14873b7b41a495602'] = 'Menu d\'importation';
|
||||
$_MODULE['<{ets_megamenu}prestashop>admin-icon_d3d2e617335f08df83599665eef8a418'] = 'Fermer';
|
||||
$_MODULE['<{ets_megamenu}prestashop>admin-icon_ec9da5db23d32f44f4031df5bd98cb11'] = 'Icône parcourir';
|
||||
$_MODULE['<{ets_megamenu}prestashop>block-product-item_f2a6c498fb90ee345d997f888fce3b18'] = 'Supprimer';
|
||||
$_MODULE['<{ets_megamenu}prestashop>item-block_c613629aef5762bb8c3f646a4035b7fd'] = 'Supprimer le bloc';
|
||||
$_MODULE['<{ets_megamenu}prestashop>item-block_f2a6c498fb90ee345d997f888fce3b18'] = 'Supprimer';
|
||||
$_MODULE['<{ets_megamenu}prestashop>item-block_dbe9af535d36976a3fb4158761b21e55'] = 'Dupliquer le bloc';
|
||||
$_MODULE['<{ets_megamenu}prestashop>item-block_ed75712b0eb1913c28a3872731ffd48d'] = 'Dupliquer';
|
||||
$_MODULE['<{ets_megamenu}prestashop>item-block_4f358ab0d7f1d9623bdcad1c346bd0f6'] = 'Éditer le bloc';
|
||||
$_MODULE['<{ets_megamenu}prestashop>item-block_7dce122004969d56ae2e0245cb754d35'] = 'Éditer';
|
||||
$_MODULE['<{ets_megamenu}prestashop>item-column_f722b0bbb0ecaa598bf84b6568ac826b'] = 'Supprimer la colonne';
|
||||
$_MODULE['<{ets_megamenu}prestashop>item-column_f2a6c498fb90ee345d997f888fce3b18'] = 'Supprimer';
|
||||
$_MODULE['<{ets_megamenu}prestashop>item-column_53f6b8619350888a722e39b25414b909'] = 'Dupliquer le colonne';
|
||||
$_MODULE['<{ets_megamenu}prestashop>item-column_ed75712b0eb1913c28a3872731ffd48d'] = 'Dupliquer';
|
||||
$_MODULE['<{ets_megamenu}prestashop>item-column_c3e7864531017869d04d401e5771cde4'] = 'Éditer le colonne';
|
||||
$_MODULE['<{ets_megamenu}prestashop>item-column_7dce122004969d56ae2e0245cb754d35'] = 'Éditer';
|
||||
$_MODULE['<{ets_megamenu}prestashop>item-column_2ff8071bcd15a31f9a743f1b06d0d00f'] = 'Ajouter un bloc';
|
||||
$_MODULE['<{ets_megamenu}prestashop>item-menu_2b5ad90c840d138033f8e9641b17e7b7'] = 'Supprimer le menu';
|
||||
$_MODULE['<{ets_megamenu}prestashop>item-menu_f2a6c498fb90ee345d997f888fce3b18'] = 'Supprimer';
|
||||
$_MODULE['<{ets_megamenu}prestashop>item-menu_630e6ef08d01ef5cb9e3397e8db5e994'] = 'Dupliquer le menu';
|
||||
$_MODULE['<{ets_megamenu}prestashop>item-menu_ed75712b0eb1913c28a3872731ffd48d'] = 'Dupliquer';
|
||||
$_MODULE['<{ets_megamenu}prestashop>item-menu_8a165af354761ba57a7f9413cf7b010a'] = 'Éditer le menu';
|
||||
$_MODULE['<{ets_megamenu}prestashop>item-menu_d3d2e617335f08df83599665eef8a418'] = 'Fermer';
|
||||
$_MODULE['<{ets_megamenu}prestashop>item-menu_67b766b66c1b187ef3ad796aabf1753b'] = 'Ajouter un onglet';
|
||||
$_MODULE['<{ets_megamenu}prestashop>item-menu_7dce122004969d56ae2e0245cb754d35'] = 'Éditer';
|
||||
$_MODULE['<{ets_megamenu}prestashop>item-menu_b61b8f498d489f2e2b916b887b7062bc'] = 'Ajouter une colonne';
|
||||
$_MODULE['<{ets_megamenu}prestashop>item-tab_a03ce9e73e3b0b18331ef0dcf4f410e1'] = 'Supprimer';
|
||||
$_MODULE['<{ets_megamenu}prestashop>item-tab_f2a6c498fb90ee345d997f888fce3b18'] = 'Supprimer';
|
||||
$_MODULE['<{ets_megamenu}prestashop>item-tab_b04cb66e24ece03f1d36dbc09a2945ea'] = 'Dupliquer';
|
||||
$_MODULE['<{ets_megamenu}prestashop>item-tab_ed75712b0eb1913c28a3872731ffd48d'] = 'Dupliquer';
|
||||
$_MODULE['<{ets_megamenu}prestashop>item-tab_2da9b93934e51331be3c8ccf3428e001'] = 'Éditer le onglet';
|
||||
$_MODULE['<{ets_megamenu}prestashop>item-tab_7dce122004969d56ae2e0245cb754d35'] = 'Éditer';
|
||||
$_MODULE['<{ets_megamenu}prestashop>item-tab_d3d2e617335f08df83599665eef8a418'] = 'Fermer';
|
||||
$_MODULE['<{ets_megamenu}prestashop>item-tab_b61b8f498d489f2e2b916b887b7062bc'] = 'Ajouter une colonne';
|
||||
$_MODULE['<{ets_megamenu}prestashop>megamenu_b61541208db7fa7dba42c85224405911'] = 'Menu';
|
||||
$_MODULE['<{ets_megamenu}prestashop>menu-html_b61541208db7fa7dba42c85224405911'] = 'Menu';
|
||||
$_MODULE['<{ets_megamenu}prestashop>menu-html_0557fa923dcee4d0f86b1409f5c2167f'] = 'Retour';
|
||||
$_MODULE['<{ets_megamenu}prestashop>product-list-17_c91e4ee170226d66e90f99ba917e4c20'] = 'Aperçu rapide';
|
||||
$_MODULE['<{ets_megamenu}prestashop>product-list-17_8a48e3d7293fc9e2f774581231418412'] = 'Aucun produit disponible';
|
||||
$_MODULE['<{ets_megamenu}prestashop>product-list-mini_8a48e3d7293fc9e2f774581231418412'] = 'Aucun produit disponible';
|
||||
$_MODULE['<{ets_megamenu}prestashop>product-list_c91e4ee170226d66e90f99ba917e4c20'] = 'Aperçu rapide';
|
||||
$_MODULE['<{ets_megamenu}prestashop>product-list_2d0f6b8300be19cf35e89e66f0677f95'] = 'Ajouter au panier';
|
||||
$_MODULE['<{ets_megamenu}prestashop>product-list_03c2e7e41ffc181a4e84080b4710e81e'] = 'Nouveau';
|
||||
$_MODULE['<{ets_megamenu}prestashop>product-list_bb63f16d5ebfcfa8a651642a7bb2ea5c'] = 'Vente!';
|
||||
$_MODULE['<{ets_megamenu}prestashop>product-list_03de921a8ea82897e13d33d66c28b4db'] = 'En ligne seulement';
|
||||
$_MODULE['<{ets_megamenu}prestashop>product-list_ca2bf12169883f4982d8fe34b7e3c618'] = 'Prix réduit!';
|
||||
$_MODULE['<{ets_megamenu}prestashop>product-list_69d08bd5f8cf4e228930935c3f13e42f'] = 'En stock';
|
||||
$_MODULE['<{ets_megamenu}prestashop>product-list_b55197a49e8c4cd8c314bc2aa39d6feb'] = 'En rupture de stock';
|
||||
$_MODULE['<{ets_megamenu}prestashop>product-list_cb3c718c905f00adbb6735f55bfb38ef'] = 'Produit disponible avec différentes options';
|
||||
$_MODULE['<{ets_megamenu}prestashop>product-list_216adaf4e98dc62ec3abeab51b9fc57f'] = 'Veuillez sélectionner au moins un produit';
|
||||
$_MODULE['<{ets_megamenu}prestashop>product-list_90723749917a82bf3ff8a73247d32ffb'] = 'Vous ne pouvez pas ajouter plus de %d produit (s) à la comparaison de produits';
|
||||
$_MODULE['<{ets_megamenu}prestashop>product-list_8a48e3d7293fc9e2f774581231418412'] = 'Aucun produit disponible';
|
||||
5
modules/ets_megamenu/translations/he.php
Normal file
@@ -0,0 +1,5 @@
|
||||
<?php
|
||||
|
||||
global $_MODULE;
|
||||
$_MODULE = array();
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_968c8ef65d5d5d87254964b78a2e02f5'] = 'Mega Menu PRO';
|
||||
29
modules/ets_megamenu/translations/index.php
Normal file
@@ -0,0 +1,29 @@
|
||||
<?php
|
||||
/**
|
||||
* 2007-2021 ETS-Soft
|
||||
*
|
||||
* NOTICE OF LICENSE
|
||||
*
|
||||
* This file is not open source! Each license that you purchased is only available for 1 wesite only.
|
||||
* If you want to use this file on more websites (or projects), you need to purchase additional licenses.
|
||||
* You are not allowed to redistribute, resell, lease, license, sub-license or offer our resources to any third party.
|
||||
*
|
||||
* 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 contact us for extra customization service at an affordable price
|
||||
*
|
||||
* @author ETS-Soft <etssoft.jsc@gmail.com>
|
||||
* @copyright 2007-2021 ETS-Soft
|
||||
* @license Valid for 1 website (or project) for each purchase of license
|
||||
* International Registered Trademark & Property of ETS-Soft
|
||||
*/
|
||||
|
||||
header('Expires: Mon, 26 Jul 1997 05:00:00 GMT');
|
||||
header('Last-Modified: '.gmdate('D, d M Y H:i:s').' GMT');
|
||||
header('Cache-Control: no-store, no-cache, must-revalidate');
|
||||
header('Cache-Control: post-check=0, pre-check=0', false);
|
||||
header('Pragma: no-cache');
|
||||
header('Location: ../');
|
||||
exit;
|
||||
351
modules/ets_megamenu/translations/it.php
Normal file
@@ -0,0 +1,351 @@
|
||||
<?php
|
||||
|
||||
global $_MODULE;
|
||||
$_MODULE = array();
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_968c8ef65d5d5d87254964b78a2e02f5'] = 'Mega Menu PRO';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_b04f52f3454c7b0d75cdd09314eb0b52'] = 'Visivo trascina e rilascia il costruttore di menu mega';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_fc029308351f31f8fe047451beb1835b'] = 'FONT PREDEFINITO A TEMA';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_8a165af354761ba57a7f9413cf7b010a'] = 'Menu modifica';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_f6c4ed278c3f8a43a2b4913a1d61c6d5'] = 'Aggiungi menu';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_c9cc8cce247e49bae79f15173ce97354'] = 'Salva';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_02674a4ef33e11c879283629996c8ff8'] = 'Direzione';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_c1b5fa03ecdb95d4a45dd1c40b02527f'] = 'Orizzontale';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_06ce2a25e5d12c166a36f654dbea6012'] = 'Verticale';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_782ee9a18759cfa9ee20ed12a8bacce9'] = 'Colore del testo del menu verticale';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_6f91f9164ea25b4a4b1b00d4e9395154'] = 'Colore di sfondo del menu verticale';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_badc91809c2dc1fecabe778ecfc3bd9f'] = 'Apri sempre il menu verticale';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_7ebf4765a04e99362230fc04eac86480'] = 'Disponibile solo per desktop';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_93cba07454f06a4a960172bbd6e2a435'] = 'Sì ';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_bafd7322c6e97d25b6299b5d6fe8920b'] = 'No';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_0cdbc3ce6753e2083253ef0ff3753347'] = 'Rimuovi il bordo';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_2641b32b86cfe616962d782685363198'] = 'Larghezza della voce del menu';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_4ade9e3bb42a3ad0b29de42915e05e04'] = 'Usa \"px\" o \"%\" o \"vw\". Ad esempio: \"20%\" o \"230px\" o \"80vw\"';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_62b6172b996ec621eee5722af8a1624b'] = 'Larghezza elemento tab';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_231131cf0e206f235339643f8350739a'] = 'Tipo di link del menu';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_a7140e841df723ac623f174ba5aa088a'] = 'Link personalizzato';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_622f3c75de9f3481ffc58c1f292c1c2b'] = 'Pagina CMS';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_bbaff12800505b22a853e8b7f4eb6a22'] = 'Contatto';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_3adbdb3ac060038aa0e6e6c138ef9873'] = 'Categoria';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_c0bd7654d5b278e65f21cf4e9153fdb4'] = 'Fabbricante';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_ec136b444eede3bc85639fac0dd06229'] = 'Fornitore';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_8cf04a9734132302f96da8e113e80ce5'] = 'Homepage';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_b78a3223503896721cca1303f776159b'] = 'Titolo';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_ccff5fe10a335f4884d54e146e68b80d'] = 'Font dell\'icona del menu';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_a579ead35787d34de93658bab29b8de5'] = 'Usa la classe dei \"font awesome\". Ad esempio: fa-bar, fa-plus, ...';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_81a36689f3786c62f31b872020afc9dc'] = 'Immagine icona del menu';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_67c0dcafa33f4e672d2b1fa59fde1cd3'] = 'Dimensione consigliata: 20 x 20';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_546752887fe72e4c110341f2a780e929'] = 'Allineamento del sottomenu';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_9128ab2a4d2b92815cd4db44baab7077'] = '(Layout LTR)';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_06b9281e396db002010bde1de57262eb'] = 'Auto';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_945d5e233cf7d6240f6b783b36a374ff'] = 'Sinistra';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_92b09c7c48c520c3c55e497875da437c'] = 'Destra';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_f5df0297bedf69afcbe26b8ab7805c9e'] = 'L\'allineamento del sottomenu viene invertito automaticamente nel layout RTL';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_22e10f4af52114387f314fee00020250'] = 'Esporre tabs in intera larghezza';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_358f993f450ec503a6ddf8915dc014ea'] = 'Sottomenu larghezza';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_3b26b2a6e99c6e75c9f7a6749b0652af'] = 'Usa \"px\" o \"%\" o \"vw\". Ad esempio: \"100%\" o \"100px\" o \"80vw\"';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_95ff0dbd3f00cfcd9ee25dadae9911c0'] = 'Classe personalizzata';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_9a13acfbbe8803801f8f291919352eee'] = 'Testo di avviso bolla';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_1ed3f9c6f7037274596ab54ea292d5a7'] = 'Nuovo, Vendita, Hot... Lascia vuoto se non si desidera avere un avviso di bolla per questo menu';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_fc1c9ff6972ea2b89de122633d9a9aaf'] = 'Colore del testo dell\'avviso a bolle';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_423fadd8b2c94c6218a24c87117e7418'] = 'Colore di sfondo avviso bolla';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_69ee1afc9b3d02e53d9f733c1993b568'] = 'Immagine di sfondo';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_94af0bd346f7900797e8ab43f9922e39'] = 'Posizione di sfondo';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_4f1f6016fc9f3f2353c0cc7c67b292bd'] = 'Centro';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_a4ffdcf0dc1f31b9acaf295d75b51d00'] = 'Cima';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_d3708546a929dfcf66eaeaba794486eb'] = 'In alto a destra';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_a4d0d101d6a34bf80ffeee601c3ff84a'] = 'In alto a sinistra';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_2ad9d63b69c4a10a5cc9cad923133bc4'] = 'Inferiore';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_b67554192c50f4f6a4c1bd4797f6c3f8'] = 'In basso a sinistra';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_5968e3c37145f57587afcba727d2b120'] = 'In basso a destra';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_75d6ef775a2104c57c52706d869a86be'] = 'Apri il link in una nuova tab';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_06f1ac65b0a6a548339a38b348e64d79'] = 'Ordinamento';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_00d23a76e43b46dae9ec7aa9dcbebb32'] = 'Abilitato';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_2da9b93934e51331be3c8ccf3428e001'] = 'Modifica tab';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_67b766b66c1b187ef3ad796aabf1753b'] = 'Aggiungi tab';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_c90a53528da75f001e1d69dd844f0993'] = 'Font dell\'icona della tab';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_840ec47f8515d48297c88a335e872fb3'] = 'Usa la classe dei \"font awesome\". Es: fa-bar, fa-plus, ...';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_3f30215d52c4851b8f06c8f1c7a0bd22'] = 'Immagine dell\'icona della tab';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_4d66066ad0f21b108844607a247f1112'] = 'Larghezza del contenuto della tab';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_2b5f489e77e74559e97bd43e979a4337'] = 'Visualizza il contenuto della tab dall\'alto';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_b61541208db7fa7dba42c85224405911'] = 'Menu';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_c3e7864531017869d04d401e5771cde4'] = 'Modifica colonna';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_b61b8f498d489f2e2b916b887b7062bc'] = 'Aggiungi colonna';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_d83778cd6dc223fd79bb07d598d6223c'] = 'Dimensione della larghezza della colonna';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_e4c38d6d45baf080943d323dd51a2ce8'] = 'Dividere';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_aa5f289085a24b28d52c9113555e3b8b'] = 'Dividi da questa colonna a nuova linea';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_5c6ba25104401c9ee0650230fc6ba413'] = 'Tab';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_4f358ab0d7f1d9623bdcad1c346bd0f6'] = 'Modifica blocco';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_2ff8071bcd15a31f9a743f1b06d0d00f'] = 'Aggiungi un blocco';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_b5a812dff3c33b63cf77f0ce007da42e'] = 'Tipo di blocco';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_8b407e232af57b6d8579d7ed0626c091'] = 'Testo/Html';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_be53a0541a6d36f6ecb879fa2c584b08'] = 'Immagine';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_068f80c7519d0528fb08e82137a72131'] = 'Prodotti';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_1976d7f704de389d9fe064e08ea35b2d'] = 'Colonna';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_cf23cd9379acd73edb90d1076efc862c'] = 'Link al titolo';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_5d29e81352b150a3e306eb985f1735a8'] = 'Lascia vuoto se non vuoi aggiungere un link per bloccare il titolo';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_2377be3c2ad9b435ba277a73f0f1ca76'] = 'Produttori';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_01fda57aa6c7e9f07f5aa36b108e95cb'] = 'Ordinato da';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_809ab7c071cedac33b6ee810e32fb5f0'] = 'Nome A-Z';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_d443ba2c0e31bbf213c36dfe1f81ac74'] = 'Nome Z-A';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_f66306bc4b2f9bac47088451fc0bb476'] = 'Il più nuovo produttore prima';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_3319557c87587792f7907b4a5881a095'] = 'Mostrare l\'immagine del produttore';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_d02b2fc8af1142137d63860b0b638e7e'] = 'Mostrare il nome del produttore';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_c276bdf15015f63a89483dbbbfe6edd9'] = 'Produttori su una filare';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_c4ca4238a0b923820dcc509a6f75849b'] = '1';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_c81e728d9d4c2f636f067f89cc14862c'] = '2';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_eccbc87e4b5ce2fe28308fd9f2a7baf3'] = '3';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_a87ff679a2f3e71d9181a67b7542122c'] = '4';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_e4da3b7fbbce2345d7772b0674a318d5'] = '5';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_1679091c5a880faf6fb5e6087eb1b2dc'] = '6';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_8f14e45fceea167a5a36dedd4bea2543'] = '7';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_c9f0f895fb98ab9159f51fd0297e236d'] = '8';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_45c48cce2e2d7fbdea1afc51c7c6ad26'] = '9';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_d3d9446802a44259755d38e6d163e820'] = '10';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_6512bd43d9caa6e02c990b0a82652dca'] = '11';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_c20ad4d76fe97759aa27a0c99bff6710'] = '12';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_1814d65a76028fdfbadab64a5a8076df'] = 'Fornitori';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_bae05f8f16fa0f42562df90f6713237e'] = 'Il più nuovo fornitore in primo luogo';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_6f34c552ec2167dff966202ccc68186b'] = 'Mostrare l\'immagine dei fornitori';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_10dc3660f72acc9b05c8742f2c8d301a'] = 'Mostrare il nome del fornitori';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_2bc7519ec199311e82717bef59ef6450'] = 'Fornitori su una filare';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_af1b98adf7f686b84cd0b443e022b7a0'] = 'Categorie';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_63ce794099274c72d3844c1296a92db0'] = 'Ordine predefinito';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_0bb450ed086ce232068db7852f99ded2'] = 'Mostrare prima la categoria più recente';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_ccb48f393023eee753f69208f038e0f3'] = 'Pagine CMS';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_2386dbe21fd6472485a7e4a871160217'] = 'HTML / contenuto di testo';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_9ce38727cff004a058021a6c7351a74a'] = 'Link immagine';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_66110e941b9796cdaf57c8b1aadb6739'] = 'Lascia vuoto se non vuoi aggiungere un link all\'immagine';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_3d19aea4e2d382e85165bbf71cef1e05'] = 'Tipologia di prodotto';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_9ff0635f5737513b1a6f559ac2bff745'] = 'Nuovi prodotti';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_7f55dc18fd28be03bea9991647014e92'] = 'Prodotti popolari';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_8af828f302b91d1f905dc35acc43efaa'] = 'Prodotti speciali';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_01f7ac959c1e6ebbb2e0ee706a7a5255'] = 'Prodotti speciali';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_43f03332c7f75a3056cfa2e29bda6bba'] = 'Migliori venditori';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_437ac95a91364eb49587af5e146b1745'] = 'Cerca prodotti';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_5221812aefa6842bf09217ee8dc0fea8'] = 'Cerca il prodotto per ID, nome o riferimento';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_3e22403f8e252c77a37d5262ccb45159'] = 'Conteggio del prodotto';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_3812464e9c462762cb7f1b1f3a8f0e30'] = 'articolo (articoli)';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_dbb7eaea6542941545255af0c27f0eaa'] = 'Abilita la descrizione del prodotto';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_d4ea25e96150caf6c2e412fa3123a78c'] = 'Abilita il orologio conto alla rovescia';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_9e3b95d7c76b34fc36feceba25606caf'] = 'Mostra titolo';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_254f642527b45bc260048e30704edb39'] = 'Configurazione';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_b20c2b0f4bb2c049ec080151b6322544'] = 'Gancio al';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_d2679b3aa8ca60a149888dd58c7d148b'] = 'Gancio predefinito';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_678314871893087a13885397b9359d70'] = 'Gancio personalizzato';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_2fcc984acd8008a708c1afca4ac47203'] = 'Metti {hook h = \'displayMegaMenu\'} sul file tpl in cui vuoi visualizzare il mega menu';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_9c1816d94b21bcc4014605193aaa2e9c'] = 'Effetto di transizione del sottomenu';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_7a1920d61156abc05a60135aefe8bc67'] = 'Predefinito';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_265eea5b45c01587fca2ac8d73cf7d91'] = 'Franare';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_cb7c3f14014406b90b14f6ec63b9c42c'] = 'Rimpicciolire';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_668857a25768ba031dcb062e53e3f8be'] = 'Dissolvenza in entrata';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_f5ca4abce85e2dddb0342d0bae3a7270'] = 'Ingrandire';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_ceec1026d2e581e6af515f964be5722b'] = 'Modalità di direzione della lingua';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_3a3f1cf30e8078032ec76a5ea7075b34'] = 'Rileva automaticamente LTR o RTL';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_3e35661f311d49f66eccb1bc2ea4de46'] = 'LTR';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_efe01da942ed68b700b911f5a1b131a7'] = 'RTL';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_61f51aeeeb6012edfe39e1280290b586'] = 'Tipo di menu mobile';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_c8df43648942ec3a9aec140f07f47b7c'] = 'Galleggiante';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_764ff8d94d40c2ecfca7141e7451aa23'] = 'A schermo intero';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_2fa0d3cf7d808e682832cf1b64f68288'] = 'Tipo di immagine di anteprima';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_3558979e4ac907db936a4caf9b38bb95'] = 'Includi sottocategorie';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_034d61901e03810153458d8fd9ee0e32'] = 'Abilita il menu appiccicose';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_eca6891198a19670c4caefb49a8272d2'] = 'Nascondi menu appiccicoso sul cellulare';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_150f2f0095524e186332edc6a42bdc17'] = 'Clicca sul testo del menu per aprire il suo sottomenu';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_833fa5ca879c27de92eb6f9b2edbfe6b'] = 'Disponibile solo per dispositivi mobili';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_e4978520c0a7db22d476049fc48a2811'] = 'Mostra l\'icona del menu verticale sul cellulare';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_4dcba203e12a944fd99c17b3df6019d1'] = 'Mostra la voce di menu attiva';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_744a24c1691e7e80b55e3a9f3c4c6601'] = 'Abilita l\'effetto di sovrapposizione grigio per il sottomenu';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_09cdd6a7321c64bae05b8cca859f1461'] = 'Abilita cache';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_5f00c519230bb042f8b9a4b0c291fba3'] = 'Durata della cache';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_6a7e73161603d87b26a8eac49dab0a9c'] = 'Ore';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_d4d0ee9985bf14169e809b164524b0b0'] = 'Tipo di layout';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_b188fdc8fbf2d384eb42079bdf92438e'] = 'Layout 1';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_896b004b0000eb87455719ab8305540f'] = 'Layout 2';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_5158e7182521be6e4f63ed2ddcdbeff9'] = 'Layout 3';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_5b0c56d71a5e571c9dfcb14658238ec1'] = 'Layout 4';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_495211a35a31e2216de73afe812a227e'] = 'Layout 5';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_16bf11530bc42fe5fad63a29cc456561'] = 'Font titolo';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_857cb35a9382f11dac28b9d811455085'] = 'Utilizza il font predefinito del tema o seleziona un font Google dall\'elenco';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_fd1c87ab22930765490fd537abfd719a'] = 'Dimensione del font del titolo';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_f530355f6159150fe5ab070472c164f4'] = 'Font testo generale';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_94cd30584ac9303f44905f69bf7aa11b'] = 'Dimensione del font del titolo del sottomenu';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_1aec5909a0a51e1412ec99e87b2543b0'] = 'Dimensione del font del testo generale';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_ecc1376febdbaf4eb985d4885b6aaef1'] = 'Sfondo del menu';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_c541248912bfebcfa4bc75f59df6be41'] = 'Colore del testo del menu';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_c1e4a52685d5f2a8a8405ec14a6d837e'] = 'Colore del testo del menu quando si passa il mouse';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_ad5f165402aa9097721ea82804acf11b'] = 'Sfondo del menu quando si passa il mouse';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_ceb2fbe7f1354d42afe52a3e019cc984'] = 'Sottomenu sfondo';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_a5c824ab7b791821e4821236f8064158'] = 'Titolo del sottomenu';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_8c97c96d883731fb5c65225111090746'] = 'Colore del testo del sottomenu';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_c2c2e915af5b7dbe47dc3246132217d3'] = 'Colore del collegamento del sottomenu quando si passa il mouse';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_4ee26c6658a45d86db563efa2c8b3b4b'] = 'Sfondo della barra dei menu sul cellulare';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_13ce19b281fa85fb7eaa1b9cff6cd07c'] = 'Colore della barra dei menu sul cellulare';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_1c2a4782352d563174cd209b564faecd'] = 'Mostra il carrello';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_f735cba10d0289cf423c69c82b3417cf'] = 'Non consigliato! Solo per utenti esperti. Il menu può essere rotto quando questa opzione è abilitata (specialmente sul tema personalizzato). È necessario avere conoscenze HTML / CSS per risolvere i problemi. Ti preghiamo di capire che questo è privo di supporto gratuito in quanto dipende dal tuo tema';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_c270de6254a4416cbca009b96f29d340'] = 'Mostra la casella di ricerca';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_2c4ed1877b9154ce1680987b434d9604'] = 'Non consigliato! Solo per modulo di ricerca predefinito e utenti avanzati. Il menu può essere rotto quando questa opzione è abilitata (specialmente sul tema personalizzato). È necessario avere conoscenze HTML / CSS per risolvere i problemi. Ti preghiamo di capire che questo è privo di supporto gratuito in quanto dipende dal tuo tema';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_525736a04a1410119f2e4d42f06982ef'] = 'Apri la casella di ricerca per impostazione predefinita';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_d84dd66a1934224777c516c5d6543d99'] = 'Mostra i link delle informazioni dell\'utente';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_45879c07f04dd122242168f6d742b357'] = 'Testo HTML personalizzato';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_ce68ba30cf3867122ead2d8ccdf0b8a2'] = 'Devi abilitare il modulo Mega Menu PRO per configurare le sue funzionalità';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_62f5d708d6ad1fa1ddd9429a65cccbea'] = 'Tutte le categorie';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_a08e5170f1ac13ffbc4470b546443ac5'] = 'Indispensabile';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_d9d7f6dc5cec2d96fdbdc731ee91f547'] = 'Download';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_276ee9e858f36e807d934b922a21a98d'] = 'Visualizza tutti i nostri moduli';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_b548e7fcbe083ebbbb369960bfb0e9a0'] = 'Il preferito di Prestashop';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_ea18b0b61adc5f34ddc205cdaa344ee3'] = 'Eletto dai nostri mercanti';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_d91586ce336b874e8b4e6b1fb6731628'] = 'Superhero Seller';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_e46c3fa146c7cecb1162ceeef0435e94'] = 'Partner creatore moduli';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_02d4482d332e1aef3437cd61c9bcc624'] = 'Contattare';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_d3d2e617335f08df83599665eef8a418'] = 'Chiudere';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_eba7393526afaf1836ba1451af0fa021'] = '12/12 (Pieno)';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_b5177504293451c17fe71226af6659ac'] = 'Elimina l\'immagine con successo';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_f6fefe344352f0815e6f53ad8f97ae76'] = 'Articolo eliminato';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_08c9975e2e9fb8c1a954c73196a9d2bb'] = 'Articolo duplicato';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_d8dfbb603a652a981303363356b66f78'] = 'Impossibile duplicare l\'articolo. È successo un problema sconosciuto';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_180641b777082af315e11f11136ef62a'] = 'Cache cancellato';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_93cbeaa38add6ac51a2c565146ba111b'] = 'Il menu è stato importato con successo. Questa pagina verrà ricaricata in 3 secondi';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_c986f2e82ba2d956bd3a5df143fc29e5'] = 'La configurazione è stata resettato correttamente. Questa pagina verrà ricaricata in 3 secondi';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_0a5fa53f3f20f67f98bd6c3b16df059d'] = 'è obbligatorio';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_248336101b461380a4b2391a7625493d'] = 'Salvato';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_ffe6b15f8499c865dc39d0795d882c35'] = 'Errore sconosciuto accaduto';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_7bb83623723e351067bfb431b5428428'] = 'L\'oggetto è vuoto';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_dcf3bf538d394728706dbc710865d01b'] = 'Il campo non è valido';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_e155eaf44266d6c55a6ddd39c3b3c34b'] = 'Il file di caricamento non può essere più grande di 100 MB';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_df02b8ac4dc8f7ec5a0b1364a911b64b'] = 'Il nome del file esiste già. Prova a rinominare il file e caricare di nuovo';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_ed03b3ac2f9dc77202649d1cd6c094c6'] = 'Impossibile caricare il file';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_7cc92687130ea12abb80556681538001'] = 'Si è verificato un errore durante il processo di caricamento delle immagini';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_c7d3d5ef28a517e88bd85cbd2b5a13fc'] = 'Immagine cancellato';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_41e62dd32e8ad4c8050b561f173a12e1'] = 'Impossibile eliminare l\'articolo a causa di un problema tecnico sconosciuto';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_998b344cff693ad388a14ba89b1523c7'] = 'è invalido';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_b8b3ae1bf635742667e9f3f55dc7e646'] = 'Il testo della bolla non può essere più lungo di 50 caratteri';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_a464ea8d48572d8f0e5a260c55a0178a'] = 'È richiesto il colore del testo di avviso bubble';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_bba4d9a657b10e609bd722a5142eb16b'] = 'È richiesto il colore dello sfondo di avviso bubble';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_deb4ef4d18b545ba2a3a3fd5bc155e5f'] = 'È richiesto un link personalizzato';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_d8a8a612dde9d851e8e33bb8eadea0e1'] = 'Si prega di selezionare una categoria';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_240213c123e4ef2ba0a5283068e26605'] = 'Si prega di selezionare una fabbricante';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_3adaf6c593f1ea64d6468e4fd2fc003e'] = 'Si prega di selezionare un fornitore';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_3f54e98cb43cb017376763427e908485'] = 'È richiesta la pagina CMS';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_b5ce00d7b254ecbb2c242cf399061c15'] = 'Il tipo di link non è valido';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_e234b18943bbedcc4afc6d30a45e989e'] = 'La larghezza del sottomenu deve essere compresa tra 10 e 100';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_84b755bdeb3f6df297b84db26746912b'] = 'HTML / testo è richiesto';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_01e0f317de80a5d8b39573414054b976'] = 'Le pagine CMS è richiesto';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_9fcbc8e58867bb8f75c6564157e38fc3'] = 'Le categorie è richiesto';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_29174bafda315dfbab561de3ceebbada'] = 'Le produttori è richiesto';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_75e6fd9bf0a7eeae37bf8aae6d117907'] = 'Le fornitori è richiesto';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_0e14bfaec163534638152aa11ec70ad4'] = 'L\'immagine è richiesta';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_71074f1d700fdd3e91e17d53e44029e2'] = 'Il tipo di blocco non è valido';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_56784cf39880e42f866a225d861b92c2'] = 'Si prega di inserire ID prodotti';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_9b2304e077bc5dc294ea2201ef1fd6ee'] = 'È richiesto il conteggio del prodotto';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_307b4f3a12df186dc03a7d316b6d3ee8'] = 'Gli ID prodotto non sono validi. Inserisci gli ID prodotto separati da una virgola (,)';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_1067c3f730599619764fce05481566ce'] = 'Il conteggio del prodotto non è valido';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_5fd13c2b89a6eaaa4614bfe258f6c40f'] = 'Il file zip sembra essere rotto';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_3aecef48e0417ca1cc03066a3f16171d'] = 'Il file zip non esiste';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_078b9a20061a21f2b47c1a4b6844df66'] = 'Menu-Info.xml non esiste';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_f55ab24ab5c393461bca98c6642bac32'] = 'Impossibile aprire il file zip. Potrebbe essere rotto o danneggiato';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_d664d410c31a3c0d868319fee5bab57f'] = 'Impossibile estrarre i dati dal file zip';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_ee7151c4fef893a18e167c6807fb0535'] = 'Né Data.xml né Config.xml esiste';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_c7c406ae6cc6e6390aca6b5e0edc7a3f'] = 'Impossibile creare il file config.xml.';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_3dc9d3baf90f74a798cf40dd61662d36'] = 'Impossibile creare il file data.xml.';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_352b2c294ccaee9cb46d7384c5eb4384'] = 'Impossibile creare il file Menu-Info.xml.';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_1031371f906a92891140f384d04b3421'] = 'Si è verificato un errore durante la generazione dell\'archivio';
|
||||
$_MODULE['<{ets_megamenu}prestashop>form_39acea19424caebfa3e95fd467ac6e11'] = 'Seleziona/deselezionare tutto';
|
||||
$_MODULE['<{ets_megamenu}prestashop>form_ec9da5db23d32f44f4031df5bd98cb11'] = 'Sfogliare l\'icona';
|
||||
$_MODULE['<{ets_megamenu}prestashop>form_a6a3c692b271fcc9c06e1758590384cc'] = 'Cancellare la cache dei menu';
|
||||
$_MODULE['<{ets_megamenu}prestashop>form_63f57742717e6101a066d7275360332d'] = 'Immagine caricata:';
|
||||
$_MODULE['<{ets_megamenu}prestashop>form_687cbf3e103f4ec4facecab72e3008a4'] = 'Clicca per vedere l\'immagine intera';
|
||||
$_MODULE['<{ets_megamenu}prestashop>form_a8d009b33e7c67b45cf2f14fe6d419ad'] = 'Azzerare solo la configurazione alle impostazioni predefinite. I dati del menu non andranno persi';
|
||||
$_MODULE['<{ets_megamenu}prestashop>form_526d688f37a86d3c3f27d0c5016eb71d'] = 'Azzerare';
|
||||
$_MODULE['<{ets_megamenu}prestashop>form_16bfbf9c462762cf1cba4134ec53c504'] = 'Caricamento';
|
||||
$_MODULE['<{ets_megamenu}prestashop>form_4e11db406c6c9f234fe8579cc9bc5ef6'] = 'Salvataggio';
|
||||
$_MODULE['<{ets_megamenu}prestashop>form_0db377921f4ce762c62526131097968f'] = 'Generale';
|
||||
$_MODULE['<{ets_megamenu}prestashop>form_1afa74da05ca145d3418aad9af510109'] = 'Design';
|
||||
$_MODULE['<{ets_megamenu}prestashop>form_80a77a0d27c15659831d0d50bbed3ab0'] = 'Caratteristiche extra';
|
||||
$_MODULE['<{ets_megamenu}prestashop>admin-form_d3d2e617335f08df83599665eef8a418'] = 'Chiudere';
|
||||
$_MODULE['<{ets_megamenu}prestashop>admin-form_c3bf447eabe632720a3aa1a7ce401274'] = 'Open';
|
||||
$_MODULE['<{ets_megamenu}prestashop>admin-form_f2a6c498fb90ee345d997f888fce3b18'] = 'Cancellare';
|
||||
$_MODULE['<{ets_megamenu}prestashop>admin-form_7dce122004969d56ae2e0245cb754d35'] = 'Modificare';
|
||||
$_MODULE['<{ets_megamenu}prestashop>admin-form_474c1219b0e41415e1115456a362ef4d'] = 'Cancellare questo articolo';
|
||||
$_MODULE['<{ets_megamenu}prestashop>admin-form_0164b35f3cbc5cbf9bf58abeb4bc14df'] = 'Aggiungi nuovo menu';
|
||||
$_MODULE['<{ets_megamenu}prestashop>admin-form_8a165af354761ba57a7f9413cf7b010a'] = 'Modificare menu';
|
||||
$_MODULE['<{ets_megamenu}prestashop>admin-form_4220caf81d84096b21f1c382d9f2104c'] = 'Aggiungi nuovo colonna';
|
||||
$_MODULE['<{ets_megamenu}prestashop>admin-form_c3e7864531017869d04d401e5771cde4'] = 'Modificare colonna';
|
||||
$_MODULE['<{ets_megamenu}prestashop>admin-form_137e8451b75e1e21b42f174538cd5cb0'] = 'Cancellare questo colonna';
|
||||
$_MODULE['<{ets_megamenu}prestashop>admin-form_4fd76a4441a519f2a61252085d438b0f'] = 'Cancellare questo blocco';
|
||||
$_MODULE['<{ets_megamenu}prestashop>admin-form_d4bde2ef599c3bc55a57e23427eabbd2'] = 'Modificare questo blocco';
|
||||
$_MODULE['<{ets_megamenu}prestashop>admin-form_bd6b819a39fdcd26de086e9f352c1fa0'] = 'Aggiungi nuovo blocco';
|
||||
$_MODULE['<{ets_megamenu}prestashop>admin-form_ed75712b0eb1913c28a3872731ffd48d'] = 'Duplicare';
|
||||
$_MODULE['<{ets_megamenu}prestashop>admin-form_a2b8f8667e7bb8cb9ea87526c637c93d'] = 'Duplicare questo menu';
|
||||
$_MODULE['<{ets_megamenu}prestashop>admin-form_a2c3cdca64334e4f378d97ff72608b36'] = 'Duplicare questo colonna';
|
||||
$_MODULE['<{ets_megamenu}prestashop>admin-form_667398242bf9a519ce518c772bb34e1f'] = 'Duplicare questo blocco';
|
||||
$_MODULE['<{ets_megamenu}prestashop>admin-form_18d043a5ec966d214566f4dda8d31c01'] = 'L\'immagine non è valida';
|
||||
$_MODULE['<{ets_megamenu}prestashop>admin-form_c93e7ab5c20aab9f777ce2ac2655c700'] = 'Anteprima in modalità tab';
|
||||
$_MODULE['<{ets_megamenu}prestashop>admin-form_5c6ba25104401c9ee0650230fc6ba413'] = 'Tab';
|
||||
$_MODULE['<{ets_megamenu}prestashop>admin-form_d0c92a6168f5a6301e8c75cc787a9c10'] = 'Anteprima in modalità elenco';
|
||||
$_MODULE['<{ets_megamenu}prestashop>admin-form_4ee29ca12c7d126654bd0e5275de6135'] = 'Elenco';
|
||||
$_MODULE['<{ets_megamenu}prestashop>admin-form_3e35661f311d49f66eccb1bc2ea4de46'] = 'LTR';
|
||||
$_MODULE['<{ets_megamenu}prestashop>admin-form_efe01da942ed68b700b911f5a1b131a7'] = 'RTL';
|
||||
$_MODULE['<{ets_megamenu}prestashop>admin-form_f8d1d022d3f7645b4b0dfe4f6de3efbc'] = 'Importare/Esportare';
|
||||
$_MODULE['<{ets_megamenu}prestashop>admin-form_f4f70727dc34561dfde1a3c529b6205c'] = 'Impostazioni';
|
||||
$_MODULE['<{ets_megamenu}prestashop>admin-form_715eafb80fc4c2e5251a46012b0ef9e4'] = 'Altri moduli';
|
||||
$_MODULE['<{ets_megamenu}prestashop>admin-form_c4086ec40444dc78cf96bb5599f6a402'] = 'Realizzato da ETS-Soft';
|
||||
$_MODULE['<{ets_megamenu}prestashop>admin-form_f6c4ed278c3f8a43a2b4913a1d61c6d5'] = 'Aggiungi menu';
|
||||
$_MODULE['<{ets_megamenu}prestashop>admin-form_deba57aebf40e70cb31644eb6ee69498'] = 'Esportare il contenuto del menu';
|
||||
$_MODULE['<{ets_megamenu}prestashop>admin-form_19976a024d14b37b816064a67c64732e'] = 'Esporta menu';
|
||||
$_MODULE['<{ets_megamenu}prestashop>admin-form_b5112dd068d158561df29735df378eef'] = 'Esportare tutti i dati del menu incluse immagini, testo e configurazione';
|
||||
$_MODULE['<{ets_megamenu}prestashop>admin-form_b8c534fb8ac5166939ccce4525eb148f'] = 'Importa i dati del menu';
|
||||
$_MODULE['<{ets_megamenu}prestashop>admin-form_4f92db9fb554ed1d896ef872346e345f'] = 'Pacchetto di dati del menu';
|
||||
$_MODULE['<{ets_megamenu}prestashop>admin-form_7726d9dd8129ac1ed3eaf1c5da96ae28'] = 'Cancella tutti i menu prima dell\'importazione';
|
||||
$_MODULE['<{ets_megamenu}prestashop>admin-form_377119d4cf2d6af97ac466d2954d6e77'] = 'Importazione di dati';
|
||||
$_MODULE['<{ets_megamenu}prestashop>admin-form_20b0d75c1373adc14873b7b41a495602'] = 'Menu di importazione';
|
||||
$_MODULE['<{ets_megamenu}prestashop>admin-icon_d3d2e617335f08df83599665eef8a418'] = 'Chiudere';
|
||||
$_MODULE['<{ets_megamenu}prestashop>admin-icon_ec9da5db23d32f44f4031df5bd98cb11'] = 'Sfogliare l\'icona';
|
||||
$_MODULE['<{ets_megamenu}prestashop>block-product-item_f2a6c498fb90ee345d997f888fce3b18'] = 'Cancellare';
|
||||
$_MODULE['<{ets_megamenu}prestashop>item-block_c613629aef5762bb8c3f646a4035b7fd'] = 'Cancellare blocco';
|
||||
$_MODULE['<{ets_megamenu}prestashop>item-block_f2a6c498fb90ee345d997f888fce3b18'] = 'Cancellare';
|
||||
$_MODULE['<{ets_megamenu}prestashop>item-block_dbe9af535d36976a3fb4158761b21e55'] = 'Duplicare blocco';
|
||||
$_MODULE['<{ets_megamenu}prestashop>item-block_ed75712b0eb1913c28a3872731ffd48d'] = 'Duplicare';
|
||||
$_MODULE['<{ets_megamenu}prestashop>item-block_4f358ab0d7f1d9623bdcad1c346bd0f6'] = 'Modificare blocco';
|
||||
$_MODULE['<{ets_megamenu}prestashop>item-block_7dce122004969d56ae2e0245cb754d35'] = 'Modificare';
|
||||
$_MODULE['<{ets_megamenu}prestashop>item-column_f722b0bbb0ecaa598bf84b6568ac826b'] = 'Cancellare column';
|
||||
$_MODULE['<{ets_megamenu}prestashop>item-column_f2a6c498fb90ee345d997f888fce3b18'] = 'Cancellare';
|
||||
$_MODULE['<{ets_megamenu}prestashop>item-column_53f6b8619350888a722e39b25414b909'] = 'Duplicare column';
|
||||
$_MODULE['<{ets_megamenu}prestashop>item-column_ed75712b0eb1913c28a3872731ffd48d'] = 'Duplicare';
|
||||
$_MODULE['<{ets_megamenu}prestashop>item-column_c3e7864531017869d04d401e5771cde4'] = 'Modificare column';
|
||||
$_MODULE['<{ets_megamenu}prestashop>item-column_7dce122004969d56ae2e0245cb754d35'] = 'Modificare';
|
||||
$_MODULE['<{ets_megamenu}prestashop>item-column_2ff8071bcd15a31f9a743f1b06d0d00f'] = 'Aggiungi un blocco';
|
||||
$_MODULE['<{ets_megamenu}prestashop>item-menu_2b5ad90c840d138033f8e9641b17e7b7'] = 'Cancellare menu';
|
||||
$_MODULE['<{ets_megamenu}prestashop>item-menu_f2a6c498fb90ee345d997f888fce3b18'] = 'Cancellare';
|
||||
$_MODULE['<{ets_megamenu}prestashop>item-menu_630e6ef08d01ef5cb9e3397e8db5e994'] = 'Duplicare menu';
|
||||
$_MODULE['<{ets_megamenu}prestashop>item-menu_ed75712b0eb1913c28a3872731ffd48d'] = 'Duplicare';
|
||||
$_MODULE['<{ets_megamenu}prestashop>item-menu_8a165af354761ba57a7f9413cf7b010a'] = 'Modificare menu';
|
||||
$_MODULE['<{ets_megamenu}prestashop>item-menu_d3d2e617335f08df83599665eef8a418'] = 'Chiudere';
|
||||
$_MODULE['<{ets_megamenu}prestashop>item-menu_67b766b66c1b187ef3ad796aabf1753b'] = 'Aggiungi tab';
|
||||
$_MODULE['<{ets_megamenu}prestashop>item-menu_7dce122004969d56ae2e0245cb754d35'] = 'Modificare';
|
||||
$_MODULE['<{ets_megamenu}prestashop>item-menu_b61b8f498d489f2e2b916b887b7062bc'] = 'Aggiungi colonna';
|
||||
$_MODULE['<{ets_megamenu}prestashop>item-tab_a03ce9e73e3b0b18331ef0dcf4f410e1'] = 'Cancellare tab';
|
||||
$_MODULE['<{ets_megamenu}prestashop>item-tab_f2a6c498fb90ee345d997f888fce3b18'] = 'Cancellare';
|
||||
$_MODULE['<{ets_megamenu}prestashop>item-tab_b04cb66e24ece03f1d36dbc09a2945ea'] = 'Duplicare tab';
|
||||
$_MODULE['<{ets_megamenu}prestashop>item-tab_ed75712b0eb1913c28a3872731ffd48d'] = 'Duplicare';
|
||||
$_MODULE['<{ets_megamenu}prestashop>item-tab_2da9b93934e51331be3c8ccf3428e001'] = 'Modificare tab';
|
||||
$_MODULE['<{ets_megamenu}prestashop>item-tab_7dce122004969d56ae2e0245cb754d35'] = 'Modificare';
|
||||
$_MODULE['<{ets_megamenu}prestashop>item-tab_d3d2e617335f08df83599665eef8a418'] = 'Chiudere';
|
||||
$_MODULE['<{ets_megamenu}prestashop>item-tab_b61b8f498d489f2e2b916b887b7062bc'] = 'Aggiungi colonna';
|
||||
$_MODULE['<{ets_megamenu}prestashop>megamenu_b61541208db7fa7dba42c85224405911'] = 'Menu';
|
||||
$_MODULE['<{ets_megamenu}prestashop>menu-html_b61541208db7fa7dba42c85224405911'] = 'Menu';
|
||||
$_MODULE['<{ets_megamenu}prestashop>menu-html_0557fa923dcee4d0f86b1409f5c2167f'] = 'Tornare';
|
||||
$_MODULE['<{ets_megamenu}prestashop>product-list-17_c91e4ee170226d66e90f99ba917e4c20'] = 'Un\'occhiata';
|
||||
$_MODULE['<{ets_megamenu}prestashop>product-list-17_8a48e3d7293fc9e2f774581231418412'] = 'Nessun prodotto disponibile';
|
||||
$_MODULE['<{ets_megamenu}prestashop>product-list-mini_8a48e3d7293fc9e2f774581231418412'] = 'Nessun prodotto disponibile';
|
||||
$_MODULE['<{ets_megamenu}prestashop>product-list_c91e4ee170226d66e90f99ba917e4c20'] = 'Un\'occhiata';
|
||||
$_MODULE['<{ets_megamenu}prestashop>product-list_2d0f6b8300be19cf35e89e66f0677f95'] = 'Aggiungi al carrello';
|
||||
$_MODULE['<{ets_megamenu}prestashop>product-list_03c2e7e41ffc181a4e84080b4710e81e'] = 'Nuovo';
|
||||
$_MODULE['<{ets_megamenu}prestashop>product-list_bb63f16d5ebfcfa8a651642a7bb2ea5c'] = 'Saldi!';
|
||||
$_MODULE['<{ets_megamenu}prestashop>product-list_03de921a8ea82897e13d33d66c28b4db'] = 'Solo online';
|
||||
$_MODULE['<{ets_megamenu}prestashop>product-list_ca2bf12169883f4982d8fe34b7e3c618'] = 'Prezzo ridotto!';
|
||||
$_MODULE['<{ets_megamenu}prestashop>product-list_69d08bd5f8cf4e228930935c3f13e42f'] = 'Disponibile';
|
||||
$_MODULE['<{ets_megamenu}prestashop>product-list_b55197a49e8c4cd8c314bc2aa39d6feb'] = 'Esaurito';
|
||||
$_MODULE['<{ets_megamenu}prestashop>product-list_cb3c718c905f00adbb6735f55bfb38ef'] = 'Prodotto disponibile con diverse opzioni';
|
||||
$_MODULE['<{ets_megamenu}prestashop>product-list_216adaf4e98dc62ec3abeab51b9fc57f'] = 'Si prega di selezionare almeno un prodotto';
|
||||
$_MODULE['<{ets_megamenu}prestashop>product-list_90723749917a82bf3ff8a73247d32ffb'] = 'Non è possibile aggiungere più di %d prodotto(i) al confronto del prodotto';
|
||||
$_MODULE['<{ets_megamenu}prestashop>product-list_8a48e3d7293fc9e2f774581231418412'] = 'Nessun prodotto disponibile';
|
||||
5
modules/ets_megamenu/translations/ja.php
Normal file
@@ -0,0 +1,5 @@
|
||||
<?php
|
||||
|
||||
global $_MODULE;
|
||||
$_MODULE = array();
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_968c8ef65d5d5d87254964b78a2e02f5'] = 'Mega Menu PRO';
|
||||
5
modules/ets_megamenu/translations/ko.php
Normal file
@@ -0,0 +1,5 @@
|
||||
<?php
|
||||
|
||||
global $_MODULE;
|
||||
$_MODULE = array();
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_968c8ef65d5d5d87254964b78a2e02f5'] = 'Mega Menu PRO';
|
||||
5
modules/ets_megamenu/translations/nl.php
Normal file
@@ -0,0 +1,5 @@
|
||||
<?php
|
||||
|
||||
global $_MODULE;
|
||||
$_MODULE = array();
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_968c8ef65d5d5d87254964b78a2e02f5'] = 'Mega Menu PRO';
|
||||
0
modules/ets_megamenu/translations/pl.php
Normal file
337
modules/ets_megamenu/translations/ru.php
Normal file
@@ -0,0 +1,337 @@
|
||||
<?php
|
||||
|
||||
global $_MODULE;
|
||||
$_MODULE = array();
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_968c8ef65d5d5d87254964b78a2e02f5'] = 'Mega Menu PRO';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_b04f52f3454c7b0d75cdd09314eb0b52'] = 'Визуальный конфигуратор меню с возможностью перетаскивания';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_fc029308351f31f8fe047451beb1835b'] = 'ШРИФТ ТЕМЫ ПО УМОЛЧАНИЮ';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_8a165af354761ba57a7f9413cf7b010a'] = 'Редактировать меню';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_f6c4ed278c3f8a43a2b4913a1d61c6d5'] = 'Добавить меню';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_c9cc8cce247e49bae79f15173ce97354'] = 'Сохр.';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_02674a4ef33e11c879283629996c8ff8'] = 'Направление';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_c1b5fa03ecdb95d4a45dd1c40b02527f'] = 'Горизонтальное';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_06ce2a25e5d12c166a36f654dbea6012'] = 'Вертикальное';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_782ee9a18759cfa9ee20ed12a8bacce9'] = 'Цвет текста вертикального меню';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_6f91f9164ea25b4a4b1b00d4e9395154'] = 'Цвет фона вертикального меню';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_badc91809c2dc1fecabe778ecfc3bd9f'] = 'Всегда открывать вертикальное меню';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_c2e4b58b319f619175be628535cf6a69'] = 'Использовать только для десктопа';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_93cba07454f06a4a960172bbd6e2a435'] = 'Да';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_bafd7322c6e97d25b6299b5d6fe8920b'] = 'Нет';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_0cdbc3ce6753e2083253ef0ff3753347'] = 'Удалить границу';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_2641b32b86cfe616962d782685363198'] = 'Ширина пункта меню';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_4ade9e3bb42a3ad0b29de42915e05e04'] = 'Используйте \"px\" или \"%\", или \"vw\". Например: \"230px\" или \"20%\", или \"80vw\".';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_62b6172b996ec621eee5722af8a1624b'] = 'Ширина элемента вкладки';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_231131cf0e206f235339643f8350739a'] = 'Тип ссылки меню';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_a7140e841df723ac623f174ba5aa088a'] = 'Пользовательская ссылка';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_622f3c75de9f3481ffc58c1f292c1c2b'] = 'Страница CMS';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_bbaff12800505b22a853e8b7f4eb6a22'] = 'Контакт';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_3adbdb3ac060038aa0e6e6c138ef9873'] = 'Категория';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_c0bd7654d5b278e65f21cf4e9153fdb4'] = 'Производитель';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_ec136b444eede3bc85639fac0dd06229'] = 'Поставщик';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_8cf04a9734132302f96da8e113e80ce5'] = 'Главная';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_b78a3223503896721cca1303f776159b'] = 'Название';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_ccff5fe10a335f4884d54e146e68b80d'] = 'Шрифтовый значок меню';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_a579ead35787d34de93658bab29b8de5'] = 'Используйте шрифт класса Font Awesome. Например: fa-bars, fa-plus, ...';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_81a36689f3786c62f31b872020afc9dc'] = 'Изображение значка меню';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_67c0dcafa33f4e672d2b1fa59fde1cd3'] = 'Рекомендуемый размер: 20x20';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_546752887fe72e4c110341f2a780e929'] = 'Выравнивание подменю';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_9128ab2a4d2b92815cd4db44baab7077'] = '(левое расположение)';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_06b9281e396db002010bde1de57262eb'] = 'Авто';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_945d5e233cf7d6240f6b783b36a374ff'] = 'Слева';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_92b09c7c48c520c3c55e497875da437c'] = 'Справа';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_f5df0297bedf69afcbe26b8ab7805c9e'] = 'Выравнивание подменю автоматически отменяется при правом расположении';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_22e10f4af52114387f314fee00020250'] = 'Отображать вкладки в полной ширине';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_358f993f450ec503a6ddf8915dc014ea'] = 'Ширина подменю';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_3b26b2a6e99c6e75c9f7a6749b0652af'] = 'Используйте \"px\" или \"%\", или \"vw\". Например: \"230px\" или \"20%\", или \"80vw\".';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_95ff0dbd3f00cfcd9ee25dadae9911c0'] = 'Пользовательский класс';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_9a13acfbbe8803801f8f291919352eee'] = 'Текст доп. подсказки (сверху над названием)';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_1ed3f9c6f7037274596ab54ea292d5a7'] = 'Например, \"Новый\", \"Распродажа\", \"Хит\", ... Оставьте пустым, если Вы не хотите иметь доп. уведомления для этого меню';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_fc1c9ff6972ea2b89de122633d9a9aaf'] = 'Цвет текста доп. уведомления';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_423fadd8b2c94c6218a24c87117e7418'] = 'Цвет фона доп. уведомления';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_69ee1afc9b3d02e53d9f733c1993b568'] = 'Фоновое изображение';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_70c24c23b9c5312281659ef79d6874bd'] = 'Позиция фона';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_4f1f6016fc9f3f2353c0cc7c67b292bd'] = 'По центру';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_a4ffdcf0dc1f31b9acaf295d75b51d00'] = 'Сверху';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_d3708546a929dfcf66eaeaba794486eb'] = 'Сверху справа';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_a4d0d101d6a34bf80ffeee601c3ff84a'] = 'Сверху слева';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_2ad9d63b69c4a10a5cc9cad923133bc4'] = 'Снизу';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_b67554192c50f4f6a4c1bd4797f6c3f8'] = 'Снизу слева';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_5968e3c37145f57587afcba727d2b120'] = 'Снизу справа';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_75d6ef775a2104c57c52706d869a86be'] = 'Открыть ссылку в новой вкладке';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_06f1ac65b0a6a548339a38b348e64d79'] = 'Порядок сортировки';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_00d23a76e43b46dae9ec7aa9dcbebb32'] = 'Включено';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_2da9b93934e51331be3c8ccf3428e001'] = 'Редактировать вкладку';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_67b766b66c1b187ef3ad796aabf1753b'] = 'Добавить вкладку';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_c90a53528da75f001e1d69dd844f0993'] = 'Шрифтовый значок вкладки';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_840ec47f8515d48297c88a335e872fb3'] = 'Используйте шрифт класса Font Awesome. Например: fa-bars, fa-plus, ...';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_3f30215d52c4851b8f06c8f1c7a0bd22'] = 'Изображение значка вкладки';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_4d66066ad0f21b108844607a247f1112'] = 'Ширина содержимого вкладки';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_2b5f489e77e74559e97bd43e979a4337'] = 'Отображать содержимое вкладки сверху';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_b61541208db7fa7dba42c85224405911'] = 'Меню';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_c3e7864531017869d04d401e5771cde4'] = 'Редактировать столбец';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_b61b8f498d489f2e2b916b887b7062bc'] = 'Добавить столбец';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_d83778cd6dc223fd79bb07d598d6223c'] = 'Размер ширины столбца';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_e4c38d6d45baf080943d323dd51a2ce8'] = 'Разрыв';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_aa5f289085a24b28d52c9113555e3b8b'] = 'Разрыв от этой колонки до новой линии';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_5c6ba25104401c9ee0650230fc6ba413'] = 'Вкладка';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_4f358ab0d7f1d9623bdcad1c346bd0f6'] = 'Редактировать блок';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_2ff8071bcd15a31f9a743f1b06d0d00f'] = 'Добавить блок';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_b5a812dff3c33b63cf77f0ce007da42e'] = 'Тип блока';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_8b407e232af57b6d8579d7ed0626c091'] = 'Текст/HTML';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_be53a0541a6d36f6ecb879fa2c584b08'] = 'Изображение';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_068f80c7519d0528fb08e82137a72131'] = 'Товары';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_1976d7f704de389d9fe064e08ea35b2d'] = 'Столбец';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_cf23cd9379acd73edb90d1076efc862c'] = 'Пользовательская ссылка';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_5d29e81352b150a3e306eb985f1735a8'] = 'Оставьте поле пустым, если вы не хотите добавлять ссылку на заголовок блока';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_2377be3c2ad9b435ba277a73f0f1ca76'] = 'Производители';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_01fda57aa6c7e9f07f5aa36b108e95cb'] = 'Сортировать по';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_809ab7c071cedac33b6ee810e32fb5f0'] = 'Имени А-Я';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_d443ba2c0e31bbf213c36dfe1f81ac74'] = 'Имени Я-А';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_f66306bc4b2f9bac47088451fc0bb476'] = 'Сначала самый новый производитель';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_3319557c87587792f7907b4a5881a095'] = 'Отображать изображение производителей';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_d02b2fc8af1142137d63860b0b638e7e'] = 'Отображать название производителей';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_c276bdf15015f63a89483dbbbfe6edd9'] = 'Производители в ряд';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_c4ca4238a0b923820dcc509a6f75849b'] = '1';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_c81e728d9d4c2f636f067f89cc14862c'] = '2';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_eccbc87e4b5ce2fe28308fd9f2a7baf3'] = '3';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_a87ff679a2f3e71d9181a67b7542122c'] = '4';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_e4da3b7fbbce2345d7772b0674a318d5'] = '5';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_1679091c5a880faf6fb5e6087eb1b2dc'] = '6';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_8f14e45fceea167a5a36dedd4bea2543'] = '7';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_c9f0f895fb98ab9159f51fd0297e236d'] = '8';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_45c48cce2e2d7fbdea1afc51c7c6ad26'] = '9';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_d3d9446802a44259755d38e6d163e820'] = '10';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_6512bd43d9caa6e02c990b0a82652dca'] = '11';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_c20ad4d76fe97759aa27a0c99bff6710'] = '12';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_1814d65a76028fdfbadab64a5a8076df'] = 'Поставщики';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_bae05f8f16fa0f42562df90f6713237e'] = 'Сначала самый новый поставщик';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_6f34c552ec2167dff966202ccc68186b'] = 'Отображать изображение поставщиков';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_10dc3660f72acc9b05c8742f2c8d301a'] = 'Отображать название поставщиков';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_2bc7519ec199311e82717bef59ef6450'] = 'Поставщики в ряд';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_af1b98adf7f686b84cd0b443e022b7a0'] = 'Категории';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_63ce794099274c72d3844c1296a92db0'] = 'Порядок по умолчанию';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_0bb450ed086ce232068db7852f99ded2'] = 'Сначала самая новая категория';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_ccb48f393023eee753f69208f038e0f3'] = 'Страницы CMS';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_2386dbe21fd6472485a7e4a871160217'] = 'HTML/Текстовое содержимое';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_9ce38727cff004a058021a6c7351a74a'] = 'Ссылка на изображение';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_66110e941b9796cdaf57c8b1aadb6739'] = 'Оставьте пустым, если вы не хотите добавлять ссылку на изображение';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_3d19aea4e2d382e85165bbf71cef1e05'] = 'Тип товара';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_9ff0635f5737513b1a6f559ac2bff745'] = 'Новые товары';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_7f55dc18fd28be03bea9991647014e92'] = 'Популярные товары';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_8af828f302b91d1f905dc35acc43efaa'] = 'Специальные товары';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_01f7ac959c1e6ebbb2e0ee706a7a5255'] = 'Лучшие товары';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_43f03332c7f75a3056cfa2e29bda6bba'] = 'Поиск товаров';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_437ac95a91364eb49587af5e146b1745'] = 'Конкретные продукты';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_5221812aefa6842bf09217ee8dc0fea8'] = 'Поиск товара по идентификатору, названию или ссылке';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_3e22403f8e252c77a37d5262ccb45159'] = 'Количество продуктов';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_3812464e9c462762cb7f1b1f3a8f0e30'] = 'товар(-ов)';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_dbb7eaea6542941545255af0c27f0eaa'] = 'Включить описание товара';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_d4ea25e96150caf6c2e412fa3123a78c'] = 'Включить таймер обратного отсчета';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_9e3b95d7c76b34fc36feceba25606caf'] = 'Отображать название';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_254f642527b45bc260048e30704edb39'] = 'Конфигурация';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_b20c2b0f4bb2c049ec080151b6322544'] = 'Хук';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_d2679b3aa8ca60a149888dd58c7d148b'] = 'Хук по умолчанию';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_678314871893087a13885397b9359d70'] = 'Пользовательский хук';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_417f94eb083c686e9adace11c382cbaa'] = 'Поместите {hook h=\'displayMegaMenu\'} в tpl файл туда, где вы хотите отобразить Mega Menu';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_9c1816d94b21bcc4014605193aaa2e9c'] = 'Эффект перехода подменю';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_7a1920d61156abc05a60135aefe8bc67'] = 'По умолчанию';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_265eea5b45c01587fca2ac8d73cf7d91'] = 'Скольжение вниз';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_cb7c3f14014406b90b14f6ec63b9c42c'] = 'Уменьшение';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_668857a25768ba031dcb062e53e3f8be'] = 'Исчезание';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_f5ca4abce85e2dddb0342d0bae3a7270'] = 'Увеличение';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_b55ac0e88683c9905df73b4f8d2f1c0f'] = 'Режим направления';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_3a3f1cf30e8078032ec76a5ea7075b34'] = 'Автоматически выбирать между левым и правым';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_3e35661f311d49f66eccb1bc2ea4de46'] = 'Левое';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_efe01da942ed68b700b911f5a1b131a7'] = 'Правое';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_61f51aeeeb6012edfe39e1280290b586'] = 'Тип мобильного меню';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_c8df43648942ec3a9aec140f07f47b7c'] = 'Плавающий';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_764ff8d94d40c2ecfca7141e7451aa23'] = 'Полноэкранный';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_2fa0d3cf7d808e682832cf1b64f68288'] = 'Тип миниатюры изображения';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_3558979e4ac907db936a4caf9b38bb95'] = 'Включить подкатегории';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_034d61901e03810153458d8fd9ee0e32'] = 'Включить липкое меню';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_eca6891198a19670c4caefb49a8272d2'] = 'Скрыть липкое меню на мобильном телефоне';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_150f2f0095524e186332edc6a42bdc17'] = 'Нажмите на текст меню, чтобы открыть его подменю';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_833fa5ca879c27de92eb6f9b2edbfe6b'] = 'Применить только на мобильных';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_e4978520c0a7db22d476049fc48a2811'] = 'Показать значок вертикального меню на мобильном телефоне';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_4dcba203e12a944fd99c17b3df6019d1'] = 'Показать активный пункт меню';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_09cdd6a7321c64bae05b8cca859f1461'] = 'Включить кэш';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_5f00c519230bb042f8b9a4b0c291fba3'] = 'Время жизни кэша';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_6a7e73161603d87b26a8eac49dab0a9c'] = 'Часов';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_d4d0ee9985bf14169e809b164524b0b0'] = 'Тип оформления';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_b188fdc8fbf2d384eb42079bdf92438e'] = 'Оформление 1';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_896b004b0000eb87455719ab8305540f'] = 'Оформление 2';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_5158e7182521be6e4f63ed2ddcdbeff9'] = 'Оформление 3';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_5b0c56d71a5e571c9dfcb14658238ec1'] = 'Оформление 4';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_495211a35a31e2216de73afe812a227e'] = 'Оформление 5';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_16bf11530bc42fe5fad63a29cc456561'] = 'Шрифт заголовка';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_857cb35a9382f11dac28b9d811455085'] = 'Используйте шрифт по умолчанию или выберите шрифт Google из списка';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_fd1c87ab22930765490fd537abfd719a'] = 'Размер шрифта заголовка';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_f530355f6159150fe5ab070472c164f4'] = 'Общий шрифт текста';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_94cd30584ac9303f44905f69bf7aa11b'] = 'Размер шрифта заголовка подменю';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_1aec5909a0a51e1412ec99e87b2543b0'] = 'Общий размер шрифта текста';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_ecc1376febdbaf4eb985d4885b6aaef1'] = 'Фон меню';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_c541248912bfebcfa4bc75f59df6be41'] = 'Цвет текста меню';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_c1e4a52685d5f2a8a8405ec14a6d837e'] = 'Цвет пунктов меню при наведении';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_ad5f165402aa9097721ea82804acf11b'] = 'Фон пунктов меню при наведении';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_ceb2fbe7f1354d42afe52a3e019cc984'] = 'Цвет фона подменю';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_a5c824ab7b791821e4821236f8064158'] = 'Цвет пунктов подменю';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_8c97c96d883731fb5c65225111090746'] = 'Цвет текста подменю';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_c2c2e915af5b7dbe47dc3246132217d3'] = 'Цвет пунктов подменю при наведении';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_75014e1737b7711eb05248ab48893155'] = 'Фон меню на мобильных';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_c22b486340fba45bff1e207374def690'] = 'Цвет меню на мобильных';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_1c2a4782352d563174cd209b564faecd'] = 'Отображать корзину';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_f6d93cc65379ebf5f2fcb29747e091e2'] = 'Не рекомендуется! Только для опытных пользователей. Меню может быть нарушено, если эта опция включена (особенно на пользовательской теме). Вы должны иметь опыт и знания по HTML/CSS для решения возникших проблем. Пожалуйста, поймите, что это не входит в бесплатную поддержку, поскольку зависит от вашей темы.';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_8a47d9a0fc3d6c891d992308d486ac81'] = 'Отображать поисковую строку';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_12ba23c60278a227ab76ed2902d31818'] = 'Не рекомендуется! Только для опытных пользователей. Меню может быть нарушено, если эта опция включена (особенно на пользовательской теме). Вы должны иметь опыт и знания по HTML/CSS для решения возникших проблем. Пожалуйста, поймите, что это не входит в бесплатную поддержку, поскольку зависит от вашей темы.';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_525736a04a1410119f2e4d42f06982ef'] = 'Раскрыть поисковую строку';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_d84dd66a1934224777c516c5d6543d99'] = 'Отображение ссылок на информацию о пользователе';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_45879c07f04dd122242168f6d742b357'] = 'Пользовательский HTML-текст';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_eba7393526afaf1836ba1451af0fa021'] = '12/12 (12/12 (Полностью)';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_adc67b5dad49a116df3fd03044119c5d'] = 'Изображение успешно удалено';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_f6fefe344352f0815e6f53ad8f97ae76'] = 'Элемент удален';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_08c9975e2e9fb8c1a954c73196a9d2bb'] = 'Элемент сдублирован';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_45b832897251ba1b7b98d00b277ae136'] = 'Не получается дублировать элемент. Произошла неизвестная проблема.';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_180641b777082af315e11f11136ef62a'] = 'Кэш очищен';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_93cbeaa38add6ac51a2c565146ba111b'] = 'Меню было успешно импортировано. Эта страница будет перезагружена через 3 секунды.';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_c986f2e82ba2d956bd3a5df143fc29e5'] = 'Конфигурация была успешно сброшена. Эта страница будет перезагружена через 3 секунды.';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_0a5fa53f3f20f67f98bd6c3b16df059d'] = 'необходимо';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_248336101b461380a4b2391a7625493d'] = 'Сохр.';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_53308a8204a5f5c9eac22f857c7a0f7d'] = 'Неизвестная ошибка';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_7bb83623723e351067bfb431b5428428'] = 'Объект пуст';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_dcf3bf538d394728706dbc710865d01b'] = 'Недопустимое поле';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_e902dc3f8a7593457f54ef84f72844ba'] = 'Размер загружаемого файла не должен превышать 100 Мб';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_df02b8ac4dc8f7ec5a0b1364a911b64b'] = 'Имя файла уже существует. Попробуйте переименовать файл и загрузить снова.';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_ed03b3ac2f9dc77202649d1cd6c094c6'] = 'Невозможно загрузить файл';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_7cc92687130ea12abb80556681538001'] = 'Произошла ошибка во время загрузки изображения.';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_c7d3d5ef28a517e88bd85cbd2b5a13fc'] = 'Изображение удалено';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_41e62dd32e8ad4c8050b561f173a12e1'] = 'Не удается удалить элемент из-за неизвестной технической проблемы';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_998b344cff693ad388a14ba89b1523c7'] = 'недопустимо';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_b8b3ae1bf635742667e9f3f55dc7e646'] = 'Текст доп. уведомления не может быть больше 50 символов';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_a464ea8d48572d8f0e5a260c55a0178a'] = 'Требуется цвет текста доп. уведомления';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_bba4d9a657b10e609bd722a5142eb16b'] = 'Требуется цвет фона доп. уведомления';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_deb4ef4d18b545ba2a3a3fd5bc155e5f'] = 'Требуется пользовательская ссылка';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_d8a8a612dde9d851e8e33bb8eadea0e1'] = 'Пожалуйста, выберите категорию';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_240213c123e4ef2ba0a5283068e26605'] = 'Пожалуйста, выберите производителя';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_3adaf6c593f1ea64d6468e4fd2fc003e'] = 'Пожалуйста, выберите поставщика';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_3f54e98cb43cb017376763427e908485'] = 'Требуется страница CMS';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_b5ce00d7b254ecbb2c242cf399061c15'] = 'Недопустимый тип ссылки';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_e234b18943bbedcc4afc6d30a45e989e'] = 'Ширина подменю должна быть от 10 до 100';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_84b755bdeb3f6df297b84db26746912b'] = 'Требуется HTML/Текст';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_01e0f317de80a5d8b39573414054b976'] = 'Требуется cтраница CMS';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_e89f4aeecaa6fb0d894618e97bcab03b'] = 'Требуются категории';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_1de3f20776f1798746ee8a0a8ebf63e0'] = 'Требуются производители';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_d42645f928d348c60ee0025665e4c909'] = 'Требуются поставщики';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_0e14bfaec163534638152aa11ec70ad4'] = 'Требуется изображение';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_71074f1d700fdd3e91e17d53e44029e2'] = 'Недопустимый тип блока';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_d49f891a5c68a68ed57394fde9e4561b'] = 'Пожалуйста, введите ID товара';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_9b2304e077bc5dc294ea2201ef1fd6ee'] = 'Требуется количество продуктов';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_6be2c5b5f1d095a90e2c37764f452077'] = 'Недопустимые идентификаторы товара. Введите идентификаторы товаров через запятую (,)';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_1067c3f730599619764fce05481566ce'] = 'Количество продуктов недействительно';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_5fd13c2b89a6eaaa4614bfe258f6c40f'] = 'Zip-файл, кажется, поломан';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_3aecef48e0417ca1cc03066a3f16171d'] = 'Zip-файл не существует';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_078b9a20061a21f2b47c1a4b6844df66'] = 'Menu-Info.xml не существует';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_f55ab24ab5c393461bca98c6642bac32'] = 'Не удается открыть zip-файл. Он может быть поломан или поврежден.';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_504dc9d91612cd4e53eaa4020df1c36e'] = 'Не удается извлечь данные из zip';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_ee7151c4fef893a18e167c6807fb0535'] = 'Ни Data.xml, ни Config.xml не существуют';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_55059225fd78e48ab8552b8c6fff20ca'] = 'Не удается создать xml-файл конфигурации.';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_0c32ea41eb876db2abb6db9c5b89006e'] = 'Не удается создать xml-файл данных.';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_fd2994c6870685826485927e4472dc57'] = 'Не удается создать Menu-Info.xml';
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_1031371f906a92891140f384d04b3421'] = 'Во время создания архива произошла ошибка';
|
||||
$_MODULE['<{ets_megamenu}prestashop>form_39acea19424caebfa3e95fd467ac6e11'] = 'Выбрать/Отменить всё';
|
||||
$_MODULE['<{ets_megamenu}prestashop>form_ec9da5db23d32f44f4031df5bd98cb11'] = 'Выбор иконки';
|
||||
$_MODULE['<{ets_megamenu}prestashop>form_a6a3c692b271fcc9c06e1758590384cc'] = 'Очистить кэш меню';
|
||||
$_MODULE['<{ets_megamenu}prestashop>form_63f57742717e6101a066d7275360332d'] = 'Загружаемое изображение:';
|
||||
$_MODULE['<{ets_megamenu}prestashop>form_687cbf3e103f4ec4facecab72e3008a4'] = 'Нажмите, чтобы увидеть полный размер изображения ';
|
||||
$_MODULE['<{ets_megamenu}prestashop>form_a8d009b33e7c67b45cf2f14fe6d419ad'] = 'Только сброс конфигурации по умолчанию. Данные меню не будут потеряны';
|
||||
$_MODULE['<{ets_megamenu}prestashop>form_526d688f37a86d3c3f27d0c5016eb71d'] = 'Сброс';
|
||||
$_MODULE['<{ets_megamenu}prestashop>form_16bfbf9c462762cf1cba4134ec53c504'] = 'Загрузка';
|
||||
$_MODULE['<{ets_megamenu}prestashop>form_4e11db406c6c9f234fe8579cc9bc5ef6'] = 'Сохр.';
|
||||
$_MODULE['<{ets_megamenu}prestashop>form_0db377921f4ce762c62526131097968f'] = 'Главное';
|
||||
$_MODULE['<{ets_megamenu}prestashop>form_1afa74da05ca145d3418aad9af510109'] = 'Дизайн';
|
||||
$_MODULE['<{ets_megamenu}prestashop>form_80a77a0d27c15659831d0d50bbed3ab0'] = 'Доп. возможности';
|
||||
$_MODULE['<{ets_megamenu}prestashop>admin-form_d3d2e617335f08df83599665eef8a418'] = 'Закрыть';
|
||||
$_MODULE['<{ets_megamenu}prestashop>admin-form_c3bf447eabe632720a3aa1a7ce401274'] = 'Открыть';
|
||||
$_MODULE['<{ets_megamenu}prestashop>admin-form_f2a6c498fb90ee345d997f888fce3b18'] = 'Удалить';
|
||||
$_MODULE['<{ets_megamenu}prestashop>admin-form_7dce122004969d56ae2e0245cb754d35'] = 'Редактировать';
|
||||
$_MODULE['<{ets_megamenu}prestashop>admin-form_474c1219b0e41415e1115456a362ef4d'] = 'Удалить этот элемент';
|
||||
$_MODULE['<{ets_megamenu}prestashop>admin-form_0164b35f3cbc5cbf9bf58abeb4bc14df'] = 'Добавить новое меню';
|
||||
$_MODULE['<{ets_megamenu}prestashop>admin-form_8a165af354761ba57a7f9413cf7b010a'] = 'Редактировать меню';
|
||||
$_MODULE['<{ets_megamenu}prestashop>admin-form_4220caf81d84096b21f1c382d9f2104c'] = 'Добавить новый столбец';
|
||||
$_MODULE['<{ets_megamenu}prestashop>admin-form_c3e7864531017869d04d401e5771cde4'] = 'Редактировать столбец';
|
||||
$_MODULE['<{ets_megamenu}prestashop>admin-form_137e8451b75e1e21b42f174538cd5cb0'] = 'Удалить этот столбец';
|
||||
$_MODULE['<{ets_megamenu}prestashop>admin-form_4fd76a4441a519f2a61252085d438b0f'] = 'Удалить этот блок';
|
||||
$_MODULE['<{ets_megamenu}prestashop>admin-form_d4bde2ef599c3bc55a57e23427eabbd2'] = 'Редактировать этот блок';
|
||||
$_MODULE['<{ets_megamenu}prestashop>admin-form_bd6b819a39fdcd26de086e9f352c1fa0'] = 'Добавить новый блок';
|
||||
$_MODULE['<{ets_megamenu}prestashop>admin-form_ed75712b0eb1913c28a3872731ffd48d'] = 'Дублировать';
|
||||
$_MODULE['<{ets_megamenu}prestashop>admin-form_a2b8f8667e7bb8cb9ea87526c637c93d'] = 'Дублировать это меню';
|
||||
$_MODULE['<{ets_megamenu}prestashop>admin-form_a2c3cdca64334e4f378d97ff72608b36'] = 'Дублировать этот столбец';
|
||||
$_MODULE['<{ets_megamenu}prestashop>admin-form_667398242bf9a519ce518c772bb34e1f'] = 'Дублировать этот блок';
|
||||
$_MODULE['<{ets_megamenu}prestashop>admin-form_18d043a5ec966d214566f4dda8d31c01'] = 'Недопустимое изображение';
|
||||
$_MODULE['<{ets_megamenu}prestashop>admin-form_f6c4ed278c3f8a43a2b4913a1d61c6d5'] = 'Добавить меню';
|
||||
$_MODULE['<{ets_megamenu}prestashop>admin-form_c93e7ab5c20aab9f777ce2ac2655c700'] = 'Просмотр в режиме вкладок';
|
||||
$_MODULE['<{ets_megamenu}prestashop>admin-form_5c6ba25104401c9ee0650230fc6ba413'] = 'Вкладка';
|
||||
$_MODULE['<{ets_megamenu}prestashop>admin-form_d0c92a6168f5a6301e8c75cc787a9c10'] = 'Просмотр в режиме списка';
|
||||
$_MODULE['<{ets_megamenu}prestashop>admin-form_4ee29ca12c7d126654bd0e5275de6135'] = 'Список';
|
||||
$_MODULE['<{ets_megamenu}prestashop>admin-form_3e35661f311d49f66eccb1bc2ea4de46'] = 'Слева';
|
||||
$_MODULE['<{ets_megamenu}prestashop>admin-form_efe01da942ed68b700b911f5a1b131a7'] = 'Справа';
|
||||
$_MODULE['<{ets_megamenu}prestashop>admin-form_f8d1d022d3f7645b4b0dfe4f6de3efbc'] = 'Импорт/Экспорт';
|
||||
$_MODULE['<{ets_megamenu}prestashop>admin-form_f4f70727dc34561dfde1a3c529b6205c'] = 'Настройки';
|
||||
$_MODULE['<{ets_megamenu}prestashop>admin-form_deba57aebf40e70cb31644eb6ee69498'] = 'Экспорт содержимого меню';
|
||||
$_MODULE['<{ets_megamenu}prestashop>admin-form_19976a024d14b37b816064a67c64732e'] = 'Экспорт меню';
|
||||
$_MODULE['<{ets_megamenu}prestashop>admin-form_b5112dd068d158561df29735df378eef'] = 'Экспорт всех данных меню, включая изображения, текст и конфигурацию';
|
||||
$_MODULE['<{ets_megamenu}prestashop>admin-form_b8c534fb8ac5166939ccce4525eb148f'] = 'Импорт данных меню';
|
||||
$_MODULE['<{ets_megamenu}prestashop>admin-form_4f92db9fb554ed1d896ef872346e345f'] = 'Пакет данных меню';
|
||||
$_MODULE['<{ets_megamenu}prestashop>admin-form_7726d9dd8129ac1ed3eaf1c5da96ae28'] = 'Очистить все меню перед импортом';
|
||||
$_MODULE['<{ets_megamenu}prestashop>admin-form_377119d4cf2d6af97ac466d2954d6e77'] = 'Импорт данных';
|
||||
$_MODULE['<{ets_megamenu}prestashop>admin-form_20b0d75c1373adc14873b7b41a495602'] = 'Импорт меню';
|
||||
$_MODULE['<{ets_megamenu}prestashop>admin-icon_d3d2e617335f08df83599665eef8a418'] = 'Закрыть';
|
||||
$_MODULE['<{ets_megamenu}prestashop>admin-icon_ec9da5db23d32f44f4031df5bd98cb11'] = 'Выбор иконки';
|
||||
$_MODULE['<{ets_megamenu}prestashop>block-product-item_f2a6c498fb90ee345d997f888fce3b18'] = 'Удалить';
|
||||
$_MODULE['<{ets_megamenu}prestashop>item-block_c613629aef5762bb8c3f646a4035b7fd'] = 'Удалить блок';
|
||||
$_MODULE['<{ets_megamenu}prestashop>item-block_f2a6c498fb90ee345d997f888fce3b18'] = 'Удалить';
|
||||
$_MODULE['<{ets_megamenu}prestashop>item-block_dbe9af535d36976a3fb4158761b21e55'] = 'Дублировать блок';
|
||||
$_MODULE['<{ets_megamenu}prestashop>item-block_ed75712b0eb1913c28a3872731ffd48d'] = 'Дублировать';
|
||||
$_MODULE['<{ets_megamenu}prestashop>item-block_4f358ab0d7f1d9623bdcad1c346bd0f6'] = 'Редактировать блок';
|
||||
$_MODULE['<{ets_megamenu}prestashop>item-block_7dce122004969d56ae2e0245cb754d35'] = 'Редактировать';
|
||||
$_MODULE['<{ets_megamenu}prestashop>item-column_f722b0bbb0ecaa598bf84b6568ac826b'] = 'Удалить столбец';
|
||||
$_MODULE['<{ets_megamenu}prestashop>item-column_f2a6c498fb90ee345d997f888fce3b18'] = 'Удалить';
|
||||
$_MODULE['<{ets_megamenu}prestashop>item-column_53f6b8619350888a722e39b25414b909'] = 'Дублировать столбец';
|
||||
$_MODULE['<{ets_megamenu}prestashop>item-column_ed75712b0eb1913c28a3872731ffd48d'] = 'Дублировать';
|
||||
$_MODULE['<{ets_megamenu}prestashop>item-column_c3e7864531017869d04d401e5771cde4'] = 'Редактировать столбец';
|
||||
$_MODULE['<{ets_megamenu}prestashop>item-column_7dce122004969d56ae2e0245cb754d35'] = 'Редактировать';
|
||||
$_MODULE['<{ets_megamenu}prestashop>item-column_2ff8071bcd15a31f9a743f1b06d0d00f'] = 'Добавить блок';
|
||||
$_MODULE['<{ets_megamenu}prestashop>item-menu_2b5ad90c840d138033f8e9641b17e7b7'] = 'Удалить меню';
|
||||
$_MODULE['<{ets_megamenu}prestashop>item-menu_f2a6c498fb90ee345d997f888fce3b18'] = 'Удалить';
|
||||
$_MODULE['<{ets_megamenu}prestashop>item-menu_630e6ef08d01ef5cb9e3397e8db5e994'] = 'Дублировать меню';
|
||||
$_MODULE['<{ets_megamenu}prestashop>item-menu_ed75712b0eb1913c28a3872731ffd48d'] = 'Дублировать';
|
||||
$_MODULE['<{ets_megamenu}prestashop>item-menu_8a165af354761ba57a7f9413cf7b010a'] = 'Редактировать меню';
|
||||
$_MODULE['<{ets_megamenu}prestashop>item-menu_d3d2e617335f08df83599665eef8a418'] = 'Закрыть';
|
||||
$_MODULE['<{ets_megamenu}prestashop>item-menu_67b766b66c1b187ef3ad796aabf1753b'] = 'Добавить вкладку';
|
||||
$_MODULE['<{ets_megamenu}prestashop>item-menu_7dce122004969d56ae2e0245cb754d35'] = 'Редактировать';
|
||||
$_MODULE['<{ets_megamenu}prestashop>item-menu_b61b8f498d489f2e2b916b887b7062bc'] = 'Добавить столбец';
|
||||
$_MODULE['<{ets_megamenu}prestashop>item-tab_a03ce9e73e3b0b18331ef0dcf4f410e1'] = 'Удалить вкладку';
|
||||
$_MODULE['<{ets_megamenu}prestashop>item-tab_f2a6c498fb90ee345d997f888fce3b18'] = 'Удалить';
|
||||
$_MODULE['<{ets_megamenu}prestashop>item-tab_b04cb66e24ece03f1d36dbc09a2945ea'] = 'Дублировать вкладку';
|
||||
$_MODULE['<{ets_megamenu}prestashop>item-tab_ed75712b0eb1913c28a3872731ffd48d'] = 'Дублировать';
|
||||
$_MODULE['<{ets_megamenu}prestashop>item-tab_2da9b93934e51331be3c8ccf3428e001'] = 'Редактировать вкладку';
|
||||
$_MODULE['<{ets_megamenu}prestashop>item-tab_7dce122004969d56ae2e0245cb754d35'] = 'Редактировать';
|
||||
$_MODULE['<{ets_megamenu}prestashop>item-tab_d3d2e617335f08df83599665eef8a418'] = 'Закрыть';
|
||||
$_MODULE['<{ets_megamenu}prestashop>item-tab_b61b8f498d489f2e2b916b887b7062bc'] = 'Добавить столбец';
|
||||
$_MODULE['<{ets_megamenu}prestashop>megamenu_b61541208db7fa7dba42c85224405911'] = 'Меню';
|
||||
$_MODULE['<{ets_megamenu}prestashop>menu-html_b61541208db7fa7dba42c85224405911'] = 'Меню';
|
||||
$_MODULE['<{ets_megamenu}prestashop>menu-html_0557fa923dcee4d0f86b1409f5c2167f'] = 'Назад';
|
||||
$_MODULE['<{ets_megamenu}prestashop>product-list-17_c91e4ee170226d66e90f99ba917e4c20'] = 'Быстрый просмотр';
|
||||
$_MODULE['<{ets_megamenu}prestashop>product-list-17_8a48e3d7293fc9e2f774581231418412'] = 'Товар недоступен';
|
||||
$_MODULE['<{ets_megamenu}prestashop>product-list-mini_8a48e3d7293fc9e2f774581231418412'] = 'Товар недоступен';
|
||||
$_MODULE['<{ets_megamenu}prestashop>product-list_c91e4ee170226d66e90f99ba917e4c20'] = 'Быстрый просмотр';
|
||||
$_MODULE['<{ets_megamenu}prestashop>product-list_2d0f6b8300be19cf35e89e66f0677f95'] = 'Добавить в корзину';
|
||||
$_MODULE['<{ets_megamenu}prestashop>product-list_03c2e7e41ffc181a4e84080b4710e81e'] = 'Новый';
|
||||
$_MODULE['<{ets_megamenu}prestashop>product-list_bb63f16d5ebfcfa8a651642a7bb2ea5c'] = 'Распродажа!';
|
||||
$_MODULE['<{ets_megamenu}prestashop>product-list_03de921a8ea82897e13d33d66c28b4db'] = 'Только онлайн';
|
||||
$_MODULE['<{ets_megamenu}prestashop>product-list_ca2bf12169883f4982d8fe34b7e3c618'] = 'Сниженная цена!';
|
||||
$_MODULE['<{ets_megamenu}prestashop>product-list_69d08bd5f8cf4e228930935c3f13e42f'] = 'В наличии';
|
||||
$_MODULE['<{ets_megamenu}prestashop>product-list_b55197a49e8c4cd8c314bc2aa39d6feb'] = 'Нет в наличии';
|
||||
$_MODULE['<{ets_megamenu}prestashop>product-list_cb3c718c905f00adbb6735f55bfb38ef'] = 'Товар доступен с различными вариантами';
|
||||
$_MODULE['<{ets_megamenu}prestashop>product-list_216adaf4e98dc62ec3abeab51b9fc57f'] = 'Пожалуйста, выберите хотя бы один товар';
|
||||
$_MODULE['<{ets_megamenu}prestashop>product-list_90723749917a82bf3ff8a73247d32ffb'] = 'Вы не можете добавить более чем %d товар(ов) к сравнению';
|
||||
$_MODULE['<{ets_megamenu}prestashop>product-list_8a48e3d7293fc9e2f774581231418412'] = 'Товар недоступен';
|
||||
5
modules/ets_megamenu/translations/tw.php
Normal file
@@ -0,0 +1,5 @@
|
||||
<?php
|
||||
|
||||
global $_MODULE;
|
||||
$_MODULE = array();
|
||||
$_MODULE['<{ets_megamenu}prestashop>ets_megamenu_968c8ef65d5d5d87254964b78a2e02f5'] = 'Mega Menu PRO';
|
||||
32
modules/ets_megamenu/upgrade/index.php
Normal file
@@ -0,0 +1,32 @@
|
||||
<?php
|
||||
/**
|
||||
* 2007-2021 ETS-Soft
|
||||
*
|
||||
* NOTICE OF LICENSE
|
||||
*
|
||||
* This file is not open source! Each license that you purchased is only available for 1 wesite only.
|
||||
* If you want to use this file on more websites (or projects), you need to purchase additional licenses.
|
||||
* You are not allowed to redistribute, resell, lease, license, sub-license or offer our resources to any third party.
|
||||
*
|
||||
* 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 contact us for extra customization service at an affordable price
|
||||
*
|
||||
* @author ETS-Soft <etssoft.jsc@gmail.com>
|
||||
* @copyright 2007-2021 ETS-Soft
|
||||
* @license Valid for 1 website (or project) for each purchase of license
|
||||
* International Registered Trademark & Property of ETS-Soft
|
||||
*/
|
||||
|
||||
header("Expires: Mon, 26 Jul 1997 05:00:00 GMT");
|
||||
header("Last-Modified: ".gmdate("D, d M Y H:i:s")." GMT");
|
||||
|
||||
header("Cache-Control: no-store, no-cache, must-revalidate");
|
||||
header("Cache-Control: post-check=0, pre-check=0", false);
|
||||
header("Pragma: no-cache");
|
||||
|
||||
header("Location: ../");
|
||||
exit;
|
||||
?>
|
||||
149
modules/ets_megamenu/upgrade/install-2.0.1.php
Normal file
@@ -0,0 +1,149 @@
|
||||
<?php
|
||||
/**
|
||||
* 2007-2021 ETS-Soft
|
||||
*
|
||||
* NOTICE OF LICENSE
|
||||
*
|
||||
* This file is not open source! Each license that you purchased is only available for 1 wesite only.
|
||||
* If you want to use this file on more websites (or projects), you need to purchase additional licenses.
|
||||
* You are not allowed to redistribute, resell, lease, license, sub-license or offer our resources to any third party.
|
||||
*
|
||||
* 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 contact us for extra customization service at an affordable price
|
||||
*
|
||||
* @author ETS-Soft <etssoft.jsc@gmail.com>
|
||||
* @copyright 2007-2021 ETS-Soft
|
||||
* @license Valid for 1 website (or project) for each purchase of license
|
||||
* International Registered Trademark & Property of ETS-Soft
|
||||
*/
|
||||
|
||||
if (!defined('_PS_VERSION_'))
|
||||
exit;
|
||||
require_once(dirname(__FILE__).'/../classes/MM_Obj.php');
|
||||
require_once(dirname(__FILE__).'/../classes/MM_Menu.php');
|
||||
require_once(dirname(__FILE__).'/../classes/MM_Column.php');
|
||||
require_once(dirname(__FILE__).'/../classes/MM_Block.php');
|
||||
require_once(dirname(__FILE__).'/../classes/MM_Config.php');
|
||||
require_once(dirname(__FILE__).'/../classes/MM_Cache.php');
|
||||
require_once(dirname(__FILE__).'/../classes/MM_Tab.php');
|
||||
function upgrade_module_2_0_1($object)
|
||||
{
|
||||
$languages = Language::getLanguages(false);
|
||||
if(Ets_megamenu::$configs['configs'])
|
||||
{
|
||||
foreach(Ets_megamenu::$configs['configs'] as $key=> $config)
|
||||
{
|
||||
if(!Configuration::get($key))
|
||||
{
|
||||
if(isset($config['lang']) && $config['lang'])
|
||||
{
|
||||
$values = array();
|
||||
foreach($languages as $lang)
|
||||
{
|
||||
$values[$lang['id_lang']] = isset($config['default']) ? $config['default'] : '';
|
||||
}
|
||||
Configuration::updateValue($key, $values,true);
|
||||
}
|
||||
else
|
||||
Configuration::updateValue($key, isset($config['default']) ? $config['default'] : '',true);
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
Db::getInstance()->execute("
|
||||
CREATE TABLE IF NOT EXISTS `"._DB_PREFIX_."ets_mm_menu_shop` (
|
||||
`id_menu` int(10) unsigned NOT NULL,
|
||||
`id_shop` int(11) DEFAULT NULL
|
||||
)
|
||||
");
|
||||
Db::getInstance()->execute("
|
||||
CREATE TABLE IF NOT EXISTS `"._DB_PREFIX_."ets_mm_tab` (
|
||||
`id_tab` int(10) unsigned NOT NULL AUTO_INCREMENT,
|
||||
`id_menu` INT(11) NOT NULL,
|
||||
`enabled` INT(11) NOT NULL,
|
||||
`tab_img_link` text,
|
||||
`tab_sub_width` text,
|
||||
`tab_sub_content_pos` INT(11) NOT NULL,
|
||||
`tab_icon` varchar(22),
|
||||
`bubble_text_color` varchar(50) DEFAULT NULL,
|
||||
`bubble_background_color` varchar(50) DEFAULT NULL,
|
||||
`sort_order` int(11) DEFAULT NULL,
|
||||
`background_image` varchar(200) DEFAULT NULL,
|
||||
`position_background` varchar(50) DEFAULT NULL,
|
||||
PRIMARY KEY (`id_tab`)
|
||||
)
|
||||
");
|
||||
Db::getInstance()->execute("
|
||||
CREATE TABLE IF NOT EXISTS `"._DB_PREFIX_."ets_mm_tab_lang` (
|
||||
`id_tab` int(10) UNSIGNED NOT NULL,
|
||||
`id_lang` int(10) UNSIGNED NOT NULL,
|
||||
`bubble_text` varchar(500) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL,
|
||||
`title` varchar(500) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL
|
||||
)
|
||||
");
|
||||
Db::getInstance()->execute('ALTER TABLE `'._DB_PREFIX_.'ets_mm_menu` CHANGE `sub_menu_max_width` `sub_menu_max_width` VARCHAR(500) NOT NULL');
|
||||
Db::getInstance()->execute(
|
||||
$object->alterSQL('ets_mm_menu','menu_open_new_tab', 'text NOT NULL AFTER `custom_class`').
|
||||
$object->alterSQL('ets_mm_menu','id_supplier', 'text NOT NULL AFTER `custom_class`').
|
||||
$object->alterSQL('ets_mm_menu','menu_img_link', 'text NOT NULL AFTER `custom_class`').
|
||||
$object->alterSQL('ets_mm_menu','menu_icon', 'varchar(222) NOT NULL AFTER `custom_class`').
|
||||
$object->alterSQL('ets_mm_block','id_suppliers', 'varchar(222) NOT NULL AFTER `id_categories`').
|
||||
$object->alterSQL('ets_mm_block','order_by_category', 'varchar(222) NOT NULL AFTER `id_categories`').
|
||||
$object->alterSQL('ets_mm_block','order_by_manufacturers', 'varchar(222) NOT NULL AFTER `id_manufacturers`').
|
||||
$object->alterSQL('ets_mm_block','order_by_suppliers', 'varchar(222) NOT NULL AFTER `id_categories`').
|
||||
$object->alterSQL('ets_mm_menu','display_tabs_in_full_width', 'varchar(50) NOT NULL').
|
||||
$object->alterSQL('ets_mm_block','show_description', 'INT(1) NOT NULL').
|
||||
$object->alterSQL('ets_mm_block','show_clock', 'INT(1) NOT NULL ').
|
||||
$object->alterSQL('ets_mm_block','display_mnu_img', 'INT(1) NOT NULL ').
|
||||
$object->alterSQL('ets_mm_block','display_mnu_name', 'INT(1) NOT NULL ').
|
||||
$object->alterSQL('ets_mm_block','display_mnu_inline', 'INT(1) NOT NULL ').
|
||||
$object->alterSQL('ets_mm_block','display_suppliers_img', 'INT(1) NOT NULL ').
|
||||
$object->alterSQL('ets_mm_block','display_suppliers_name', 'INT(1) NOT NULL ').
|
||||
$object->alterSQL('ets_mm_block','display_suppliers_inline', 'INT(1) NOT NULL ').
|
||||
$object->alterSQL('ets_mm_menu','enabled_vertical', 'INT(1) NOT NULL ').
|
||||
$object->alterSQL('ets_mm_menu','tab_item_width', 'varchar(50) NOT NULL ').
|
||||
$object->alterSQL('ets_mm_menu','menu_item_width', 'varchar(50) NOT NULL ').
|
||||
$object->alterSQL('ets_mm_menu','background_image', 'varchar(50) NOT NULL ').
|
||||
$object->alterSQL('ets_mm_menu','position_background', 'varchar(50) NOT NULL ').
|
||||
$object->alterSQL('ets_mm_menu','menu_ver_text_color', 'varchar(50) NOT NULL ').
|
||||
$object->alterSQL('ets_mm_menu','menu_ver_background_color', 'varchar(50) NOT NULL ').
|
||||
$object->alterSQL('ets_mm_menu','menu_ver_hidden_border', 'varchar(50) NOT NULL ').
|
||||
$object->alterSQL('ets_mm_column','id_tab', 'INT(11) NOT NULL')
|
||||
);
|
||||
|
||||
$menus=Db::getInstance()->executeS('SELECT * FROM '._DB_PREFIX_.'ets_mm_menu WHERE id_menu NOT IN (SELECT id_menu FROM '._DB_PREFIX_.'ets_mm_menu_shop)');
|
||||
if($menus)
|
||||
{
|
||||
foreach($menus as $menu)
|
||||
{
|
||||
$shops = Db::getInstance()->executeS('SELECT id_shop FROM '._DB_PREFIX_.'shop');
|
||||
foreach($shops as $shop)
|
||||
{
|
||||
$id_shop=$shop['id_shop'];
|
||||
if($id_shop==Context::getContext()->shop->id)
|
||||
{
|
||||
Db::getInstance()->execute('
|
||||
INSERT INTO `'._DB_PREFIX_.'ets_mm_menu_shop` (`id_shop`, `id_menu`)
|
||||
VALUES('.(int)$id_shop.', '.(int)$menu['id_menu'].')'
|
||||
);
|
||||
}
|
||||
else
|
||||
{
|
||||
$menuObj = new MM_Menu($menu['id_menu']);
|
||||
if($newObj=$menuObj->duplicateItem())
|
||||
Db::getInstance()->execute('UPDATE '._DB_PREFIX_.'ets_mm_menu_shop SET id_shop="'.(int)$id_shop.'" where id_menu='.(int)$newObj->id);
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
$object->registerHook('displayCustomMenu');
|
||||
$object->registerHook('displayCustomerInforTop');
|
||||
$object->registerHook('displaySearch');
|
||||
$object->registerHook('displayCartTop');
|
||||
$object->registerHook('displayMMItemTab');
|
||||
return true;
|
||||
}
|
||||
37
modules/ets_megamenu/upgrade/install-2.0.2.php
Normal file
@@ -0,0 +1,37 @@
|
||||
<?php
|
||||
/**
|
||||
* 2007-2021 ETS-Soft
|
||||
*
|
||||
* NOTICE OF LICENSE
|
||||
*
|
||||
* This file is not open source! Each license that you purchased is only available for 1 wesite only.
|
||||
* If you want to use this file on more websites (or projects), you need to purchase additional licenses.
|
||||
* You are not allowed to redistribute, resell, lease, license, sub-license or offer our resources to any third party.
|
||||
*
|
||||
* 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 contact us for extra customization service at an affordable price
|
||||
*
|
||||
* @author ETS-Soft <etssoft.jsc@gmail.com>
|
||||
* @copyright 2007-2021 ETS-Soft
|
||||
* @license Valid for 1 website (or project) for each purchase of license
|
||||
* International Registered Trademark & Property of ETS-Soft
|
||||
*/
|
||||
|
||||
if (!defined('_PS_VERSION_'))
|
||||
exit;
|
||||
require_once(dirname(__FILE__).'/../classes/MM_Obj.php');
|
||||
require_once(dirname(__FILE__).'/../classes/MM_Menu.php');
|
||||
require_once(dirname(__FILE__).'/../classes/MM_Column.php');
|
||||
require_once(dirname(__FILE__).'/../classes/MM_Block.php');
|
||||
require_once(dirname(__FILE__).'/../classes/MM_Config.php');
|
||||
require_once(dirname(__FILE__).'/../classes/MM_Cache.php');
|
||||
require_once(dirname(__FILE__).'/../classes/MM_Tab.php');
|
||||
function upgrade_module_2_0_2($object)
|
||||
{
|
||||
return (bool)Db::getInstance()->execute(
|
||||
$object->alterSQL('ets_mm_tab','url', 'text NOT NULL')
|
||||
);
|
||||
}
|
||||
32
modules/ets_megamenu/upgrade/install-2.0.3.php
Normal file
@@ -0,0 +1,32 @@
|
||||
<?php
|
||||
/**
|
||||
* 2007-2021 ETS-Soft
|
||||
*
|
||||
* NOTICE OF LICENSE
|
||||
*
|
||||
* This file is not open source! Each license that you purchased is only available for 1 wesite only.
|
||||
* If you want to use this file on more websites (or projects), you need to purchase additional licenses.
|
||||
* You are not allowed to redistribute, resell, lease, license, sub-license or offer our resources to any third party.
|
||||
*
|
||||
* 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 contact us for extra customization service at an affordable price
|
||||
*
|
||||
* @author ETS-Soft <etssoft.jsc@gmail.com>
|
||||
* @copyright 2007-2021 ETS-Soft
|
||||
* @license Valid for 1 website (or project) for each purchase of license
|
||||
* International Registered Trademark & Property of ETS-Soft
|
||||
*/
|
||||
|
||||
if (!defined('_PS_VERSION_'))
|
||||
exit;
|
||||
require_once(dirname(__FILE__) . '/../classes/MM_Products.php');
|
||||
function upgrade_module_2_0_3($object)
|
||||
{
|
||||
return (bool)Db::getInstance()->execute(
|
||||
$object->alterSQL('ets_mm_block', 'product_count', 'int(11) NOT NULL AFTER id_products').
|
||||
$object->alterSQL('ets_mm_menu', 'menu_ver_alway_show', 'tinyint(1) NULL DEFAULT NULL AFTER position_background')
|
||||
);
|
||||
}
|
||||
28
modules/ets_megamenu/upgrade/install-2.0.5.php
Normal file
@@ -0,0 +1,28 @@
|
||||
<?php
|
||||
/**
|
||||
* 2007-2021 ETS-Soft
|
||||
*
|
||||
* NOTICE OF LICENSE
|
||||
*
|
||||
* This file is not open source! Each license that you purchased is only available for 1 wesite only.
|
||||
* If you want to use this file on more websites (or projects), you need to purchase additional licenses.
|
||||
* You are not allowed to redistribute, resell, lease, license, sub-license or offer our resources to any third party.
|
||||
*
|
||||
* 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 contact us for extra customization service at an affordable price
|
||||
*
|
||||
* @author ETS-Soft <etssoft.jsc@gmail.com>
|
||||
* @copyright 2007-2021 ETS-Soft
|
||||
* @license Valid for 1 website (or project) for each purchase of license
|
||||
* International Registered Trademark & Property of ETS-Soft
|
||||
*/
|
||||
|
||||
if (!defined('_PS_VERSION_'))
|
||||
exit;
|
||||
function upgrade_module_2_0_5($object)
|
||||
{
|
||||
return $object->registerHook('displayNavFullWidth');
|
||||
}
|
||||
30
modules/ets_megamenu/upgrade/install-2.0.6.php
Normal file
@@ -0,0 +1,30 @@
|
||||
<?php
|
||||
/**
|
||||
* 2007-2021 ETS-Soft
|
||||
*
|
||||
* NOTICE OF LICENSE
|
||||
*
|
||||
* This file is not open source! Each license that you purchased is only available for 1 wesite only.
|
||||
* If you want to use this file on more websites (or projects), you need to purchase additional licenses.
|
||||
* You are not allowed to redistribute, resell, lease, license, sub-license or offer our resources to any third party.
|
||||
*
|
||||
* 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 contact us for extra customization service at an affordable price
|
||||
*
|
||||
* @author ETS-Soft <etssoft.jsc@gmail.com>
|
||||
* @copyright 2007-2021 ETS-Soft
|
||||
* @license Valid for 1 website (or project) for each purchase of license
|
||||
* International Registered Trademark & Property of ETS-Soft
|
||||
*/
|
||||
|
||||
if (!defined('_PS_VERSION_'))
|
||||
exit;
|
||||
require_once(dirname(__FILE__).'/../classes/MM_Config.php');
|
||||
function upgrade_module_2_0_6($object)
|
||||
{
|
||||
$config = new MM_Config();
|
||||
return is_object($object) && $config->installConfigs(true);
|
||||
}
|
||||
31
modules/ets_megamenu/upgrade/install-2.0.7.php
Normal file
@@ -0,0 +1,31 @@
|
||||
<?php
|
||||
/**
|
||||
* 2007-2021 ETS-Soft
|
||||
*
|
||||
* NOTICE OF LICENSE
|
||||
*
|
||||
* This file is not open source! Each license that you purchased is only available for 1 wesite only.
|
||||
* If you want to use this file on more websites (or projects), you need to purchase additional licenses.
|
||||
* You are not allowed to redistribute, resell, lease, license, sub-license or offer our resources to any third party.
|
||||
*
|
||||
* 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 contact us for extra customization service at an affordable price
|
||||
*
|
||||
* @author ETS-Soft <etssoft.jsc@gmail.com>
|
||||
* @copyright 2007-2021 ETS-Soft
|
||||
* @license Valid for 1 website (or project) for each purchase of license
|
||||
* International Registered Trademark & Property of ETS-Soft
|
||||
*/
|
||||
|
||||
if (!defined('_PS_VERSION_'))
|
||||
exit;
|
||||
|
||||
function upgrade_module_2_0_7($object)
|
||||
{
|
||||
return (bool)Db::getInstance()->execute(
|
||||
$object->alterSQL('ets_mm_block', 'display_image_cat', 'int(1) tinyint(1) NOT NULL DEFAULT "1"')
|
||||
);
|
||||
}
|
||||
30
modules/ets_megamenu/upgrade/install-2.0.8.php
Normal file
@@ -0,0 +1,30 @@
|
||||
<?php
|
||||
/**
|
||||
* 2007-2021 ETS-Soft
|
||||
*
|
||||
* NOTICE OF LICENSE
|
||||
*
|
||||
* This file is not open source! Each license that you purchased is only available for 1 wesite only.
|
||||
* If you want to use this file on more websites (or projects), you need to purchase additional licenses.
|
||||
* You are not allowed to redistribute, resell, lease, license, sub-license or offer our resources to any third party.
|
||||
*
|
||||
* 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 contact us for extra customization service at an affordable price
|
||||
*
|
||||
* @author ETS-Soft <etssoft.jsc@gmail.com>
|
||||
* @copyright 2007-2021 ETS-Soft
|
||||
* @license Valid for 1 website (or project) for each purchase of license
|
||||
* International Registered Trademark & Property of ETS-Soft
|
||||
*/
|
||||
|
||||
if (!defined('_PS_VERSION_'))
|
||||
exit;
|
||||
|
||||
function upgrade_module_2_0_8()
|
||||
{
|
||||
Configuration::updateValue('ETS_MM_ACTIVE_BG_GRAY',1);
|
||||
return true;
|
||||
}
|
||||
30
modules/ets_megamenu/upgrade/install-2.1.8.php
Normal file
@@ -0,0 +1,30 @@
|
||||
<?php
|
||||
/**
|
||||
* 2007-2021 ETS-Soft
|
||||
*
|
||||
* NOTICE OF LICENSE
|
||||
*
|
||||
* This file is not open source! Each license that you purchased is only available for 1 wesite only.
|
||||
* If you want to use this file on more websites (or projects), you need to purchase additional licenses.
|
||||
* You are not allowed to redistribute, resell, lease, license, sub-license or offer our resources to any third party.
|
||||
*
|
||||
* 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 contact us for extra customization service at an affordable price
|
||||
*
|
||||
* @author ETS-Soft <etssoft.jsc@gmail.com>
|
||||
* @copyright 2007-2021 ETS-Soft
|
||||
* @license Valid for 1 website (or project) for each purchase of license
|
||||
* International Registered Trademark & Property of ETS-Soft
|
||||
*/
|
||||
|
||||
if (!defined('_PS_VERSION_'))
|
||||
exit;
|
||||
|
||||
function upgrade_module_2_1_8($object)
|
||||
{
|
||||
$object->dropTable('ets_mm_block', 'display_image_cat');
|
||||
return true;
|
||||
}
|
||||
37
modules/ets_megamenu/upgrade/install-2.1.9.php
Normal file
@@ -0,0 +1,37 @@
|
||||
<?php
|
||||
/**
|
||||
* 2007-2021 ETS-Soft
|
||||
*
|
||||
* NOTICE OF LICENSE
|
||||
*
|
||||
* This file is not open source! Each license that you purchased is only available for 1 wesite only.
|
||||
* If you want to use this file on more websites (or projects), you need to purchase additional licenses.
|
||||
* You are not allowed to redistribute, resell, lease, license, sub-license or offer our resources to any third party.
|
||||
*
|
||||
* 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 contact us for extra customization service at an affordable price
|
||||
*
|
||||
* @author ETS-Soft <etssoft.jsc@gmail.com>
|
||||
* @copyright 2007-2021 ETS-Soft
|
||||
* @license Valid for 1 website (or project) for each purchase of license
|
||||
* International Registered Trademark & Property of ETS-Soft
|
||||
*/
|
||||
|
||||
if (!defined('_PS_VERSION_'))
|
||||
exit;
|
||||
require_once(dirname(__FILE__).'/../classes/MM_Config.php');
|
||||
function upgrade_module_2_1_9($object)
|
||||
{
|
||||
$res = ets_menu_update_configuration_haimotchin($object);
|
||||
return $res;
|
||||
}
|
||||
|
||||
if ( ! function_exists('ets_menu_update_configuration_haimotchin') ){
|
||||
function ets_menu_update_configuration_haimotchin($object){
|
||||
$config = new MM_Config();
|
||||
return is_object($object) && $config->installConfigs(true);
|
||||
}
|
||||
}
|
||||
63
modules/ets_megamenu/upgrade/install-2.2.3.php
Normal file
@@ -0,0 +1,63 @@
|
||||
<?php
|
||||
/**
|
||||
* 2007-2021 ETS-Soft
|
||||
*
|
||||
* NOTICE OF LICENSE
|
||||
*
|
||||
* This file is not open source! Each license that you purchased is only available for 1 wesite only.
|
||||
* If you want to use this file on more websites (or projects), you need to purchase additional licenses.
|
||||
* You are not allowed to redistribute, resell, lease, license, sub-license or offer our resources to any third party.
|
||||
*
|
||||
* 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 contact us for extra customization service at an affordable price
|
||||
*
|
||||
* @author ETS-Soft <etssoft.jsc@gmail.com>
|
||||
* @copyright 2007-2021 ETS-Soft
|
||||
* @license Valid for 1 website (or project) for each purchase of license
|
||||
* International Registered Trademark & Property of ETS-Soft
|
||||
*/
|
||||
|
||||
if (!defined('_PS_VERSION_'))
|
||||
exit;
|
||||
|
||||
function upgrade_module_2_2_3()
|
||||
{
|
||||
mmg_check_colum('ets_mm_menu', 'menu_ver_alway_open_first', 'tinyint(1) UNSIGNED NOT NULL DEFAULT "1" AFTER `menu_ver_alway_show`');
|
||||
mmg_check_update();
|
||||
return true;
|
||||
}
|
||||
|
||||
if ( ! function_exists('mmg_check_colum')){
|
||||
function mmg_check_colum($table, $column, $suffix)
|
||||
{
|
||||
return Db::getInstance()->execute('
|
||||
SET @dbname = DATABASE();
|
||||
SET @tablename = "' . _DB_PREFIX_ . pSQL($table) . '";
|
||||
SET @columnname = "' . pSQL($column) . '";
|
||||
SET @suffix = "' . pSQL($suffix) . '";
|
||||
SET @preparedStatement = (SELECT IF(
|
||||
(
|
||||
SELECT COUNT(*) FROM INFORMATION_SCHEMA.COLUMNS
|
||||
WHERE
|
||||
(table_name = @tablename)
|
||||
AND (table_schema = @dbname)
|
||||
AND (column_name = @columnname)
|
||||
) > 0,
|
||||
"SELECT 1",
|
||||
CONCAT("ALTER TABLE ", @tablename, " ADD ", @columnname," ", @suffix)
|
||||
));
|
||||
PREPARE alterIfNotExists FROM @preparedStatement;
|
||||
EXECUTE alterIfNotExists;
|
||||
DEALLOCATE PREPARE alterIfNotExists;
|
||||
');
|
||||
}
|
||||
}
|
||||
|
||||
if (!function_exists('mmg_check_update')){
|
||||
function mmg_check_update(){
|
||||
DB::getInstance()->execute('UPDATE `'._DB_PREFIX_.'ets_mm_menu` SET `menu_ver_alway_open_first`=1');
|
||||
}
|
||||
}
|
||||
3303
modules/ets_megamenu/views/css/animate.css
vendored
Normal file
176
modules/ets_megamenu/views/css/dynamic-old.css
Normal file
@@ -0,0 +1,176 @@
|
||||
/*Main background ------- color 1 */
|
||||
/*background hover item ------- color 2 */
|
||||
/*text color ------- color 3 */
|
||||
/*text hover color ------- color 4*/
|
||||
/*border color ------- color 5 */
|
||||
.ets_mm_megamenu .mm_menus_li h4,
|
||||
.ets_mm_megamenu .mm_menus_li h5,
|
||||
.ets_mm_megamenu .mm_menus_li h6,
|
||||
.ets_mm_megamenu .mm_menus_li h1,
|
||||
.ets_mm_megamenu .mm_menus_li h2,
|
||||
.ets_mm_megamenu .mm_menus_li h3,
|
||||
.ets_mm_megamenu .mm_menus_li h4 *:not(i),
|
||||
.ets_mm_megamenu .mm_menus_li h5 *:not(i),
|
||||
.ets_mm_megamenu .mm_menus_li h6 *:not(i),
|
||||
.ets_mm_megamenu .mm_menus_li h1 *:not(i),
|
||||
.ets_mm_megamenu .mm_menus_li h2 *:not(i),
|
||||
.ets_mm_megamenu .mm_menus_li h3 *:not(i),
|
||||
.ets_mm_megamenu .mm_menus_li > a{
|
||||
font-family: font1;
|
||||
}
|
||||
.ets_mm_megamenu *{
|
||||
font-family: font2;
|
||||
}
|
||||
|
||||
.layout_layout1 .mm_menus_li:hover > a,
|
||||
.layout_layout1 .mm_menus_li.active > a,
|
||||
#header .layout_layout1 .mm_menus_li:hover > a,
|
||||
#header .layout_layout1 .mm_menus_li.active > a{color: color2;}
|
||||
|
||||
.layout_layout1 li:hover > a,
|
||||
.layout_layout1 li > a:hover,
|
||||
#header .layout_layout1 .mm_block_type_html .ets_mm_block_content a:hover,
|
||||
#header .layout_layout1 li:hover > a,
|
||||
#header .layout_layout1 .mm_columns_ul .mm_block_type_product .product-title > a:hover,
|
||||
#header .layout_layout1 li > a:hover{color: color7;}
|
||||
|
||||
.layout_layout2 .mm_columns_ul li:hover > a,
|
||||
.layout_layout2 .mm_columns_ul li > a:hover,
|
||||
#header .layout_layout2 .mm_columns_ul .mm_block_type_product .product-title > a:hover,
|
||||
#header .layout_layout2 .mm_columns_ul li:hover > a,
|
||||
#header .layout_layout2 .mm_columns_ul li > a:hover{color: color7;}
|
||||
|
||||
.layout_layout3 .mm_columns_ul .ets_mm_categories .has-sub li:hover > a,
|
||||
.layout_layout3 .mm_columns_ul .ets_mm_categories .has-sub li > a:hover,
|
||||
#header .layout_layout3 .mm_columns_ul .ets_mm_categories .has-sub li:hover > a,
|
||||
#header .layout_layout3 .mm_columns_ul .ets_mm_categories .has-sub li > a:hover{
|
||||
color: color7;
|
||||
}
|
||||
.layout_layout3 .mm_columns_ul li:hover > a,
|
||||
.layout_layout3 .mm_columns_ul li > a:hover,
|
||||
#header .layout_layout3 .mm_columns_ul li:hover > a,
|
||||
#header .layout_layout3 .mm_columns_ul li > a:hover{color: color7;}
|
||||
|
||||
.layout_layout4 .mm_columns_ul li:hover > a,
|
||||
.layout_layout4 .mm_columns_ul li > a:hover,
|
||||
#header .layout_layout4 .mm_columns_ul li:hover > a,
|
||||
#header .layout_layout4 .mm_columns_ul .mm_block_type_product .product-title > a:hover,
|
||||
#header .layout_layout4 .mm_columns_ul li > a:hover{color: color7;}
|
||||
|
||||
.layout_layout5 li:hover > a,
|
||||
.layout_layout5 li > span.arrow:hover,
|
||||
.layout_layout5 li > a:hover,
|
||||
.layout_layout5 .mm_menus_li.active > a,
|
||||
#header .layout_layout5 li:hover > a,
|
||||
#header .layout_layout5 .mm_columns_ul .mm_block_type_product .product-title > a:hover,
|
||||
#header .layout_layout5 li > span.arrow:hover
|
||||
#header .layout_layout5 li > a:hover,
|
||||
#header .layout_layout5 .mm_menus_li.active > a,
|
||||
.layout_layout5 .ets_mm_block_content .has-sub:hover > a:after,
|
||||
#header .layout_layout5 .ets_mm_block_content .has-sub:hover > a:after{
|
||||
border-color: color7;
|
||||
}
|
||||
|
||||
/*layout 5*/
|
||||
.layout_layout5 li:hover > a,
|
||||
.layout_layout5 li > span.arrow:hover,
|
||||
.layout_layout5 li > a:hover,
|
||||
.layout_layout5 .mm_menus_li.active > a,
|
||||
#header .layout_layout5 li:hover > a,
|
||||
#header .layout_layout5 .mm_columns_ul .mm_block_type_product .product-title > a:hover,
|
||||
#header .layout_layout5 li > span.arrow:hover
|
||||
#header .layout_layout5 li > a:hover,
|
||||
#header .layout_layout5 .mm_menus_li.active > a{color: color7;}
|
||||
|
||||
|
||||
|
||||
@media (min-width: 768px){
|
||||
/*layout 1*/
|
||||
.layout_layout1 .mm_menus_li > a,
|
||||
#header .layout_layout1 .mm_menus_li > a{color: color1;}
|
||||
.layout_layout1 .mm_menus_li > a:before{background-color: color2;}
|
||||
|
||||
|
||||
/*layout 2*/
|
||||
.layout_layout2 .ets_mm_megamenu_content{background: color3;}
|
||||
.layout_layout2 .mm_menus_li:hover > a,
|
||||
.layout_layout2 .mm_menus_li.active > a,
|
||||
#header .layout_layout2 .mm_menus_li:hover > a,
|
||||
#header .layout_layout2 .mm_menus_li.active > a{background-color: color4;}
|
||||
|
||||
|
||||
|
||||
/*layout 3*/
|
||||
.layout_layout3 .ets_mm_megamenu_content{background: color5;}
|
||||
|
||||
.layout_layout3 .mm_menus_li:hover > a,
|
||||
.layout_layout3 .mm_menus_li.active > a{background-color: color6;}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
.mm_columns_ul .ets_mm_categories .has-sub:hover > a:after{
|
||||
border-color: color7;
|
||||
}
|
||||
|
||||
.layout_layout3 .mm_menus_li > .mm_columns_ul{
|
||||
background-color: color6;
|
||||
border-color: color5;
|
||||
}
|
||||
.layout_layout3 .mm_menus_li > .mm_columns_ul h4,
|
||||
.layout_layout3 .mm_menus_li > .mm_columns_ul h4 a,
|
||||
#header .layout_layout3 .mm_menus_li > .mm_columns_ul h4 a{
|
||||
color: #fff;
|
||||
}
|
||||
.layout_layout3.ets_mm_block_content .has-sub > a:after{
|
||||
border-top-color: color5;
|
||||
}
|
||||
|
||||
|
||||
/*layout 4*/
|
||||
.layout_layout4 .ets_mm_megamenu_content {
|
||||
border-bottom-color: color2;
|
||||
}
|
||||
.layout_layout4 .mm_menus_li:hover > a,
|
||||
.layout_layout4 .mm_menus_li.active > a,
|
||||
.layout_layout4 .mm_menus_li:hover > span,
|
||||
.layout_layout4 .mm_menus_li.active > span,
|
||||
#header .layout_layout4 .mm_menus_li:hover > a,
|
||||
#header .layout_layout4 .mm_menus_li.active > a,
|
||||
#header .layout_layout4 .mm_menus_li:hover > span,
|
||||
#header .layout_layout4 .mm_menus_li.active > span {
|
||||
background-color: color2;
|
||||
color: #fff;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
@media only screen and (max-width: 767px){
|
||||
.ybc-menu-toggle,
|
||||
.transition_floating .close_menu,
|
||||
.transition_full .close_menu {
|
||||
background-color: color8;
|
||||
color: color9;
|
||||
}
|
||||
.ets_mm_megamenu .ets_mm_megamenu_content .mm_menus_ul .close_menu *{
|
||||
color: color9 !important;
|
||||
}
|
||||
.ets_mm_megamenu .ets_mm_megamenu_content .mm_menus_ul .close_menu .icon-bar{
|
||||
background-color: color9 !important;
|
||||
}
|
||||
.ets_mm_megamenu .mm_menus_back_icon{
|
||||
border-color: color9;
|
||||
}
|
||||
.ybc-menu-toggle .icon-bar {
|
||||
background-color: color9;
|
||||
}
|
||||
|
||||
.mm_menus_li:hover > a,
|
||||
#header .mm_menus_li:hover > a{color: color7;}
|
||||
.mm_menus_li:hover > .arrow:before{
|
||||
border-color: color7;
|
||||
}
|
||||
|
||||
}
|
||||
670
modules/ets_megamenu/views/css/dynamic.css
Normal file
@@ -0,0 +1,670 @@
|
||||
.ets_mm_megamenu .mm_menus_li h4,
|
||||
.ets_mm_megamenu .mm_menus_li h5,
|
||||
.ets_mm_megamenu .mm_menus_li h6,
|
||||
.ets_mm_megamenu .mm_menus_li h1,
|
||||
.ets_mm_megamenu .mm_menus_li h2,
|
||||
.ets_mm_megamenu .mm_menus_li h3,
|
||||
.ets_mm_megamenu .mm_menus_li h4 *:not(i),
|
||||
.ets_mm_megamenu .mm_menus_li h5 *:not(i),
|
||||
.ets_mm_megamenu .mm_menus_li h6 *:not(i),
|
||||
.ets_mm_megamenu .mm_menus_li h1 *:not(i),
|
||||
.ets_mm_megamenu .mm_menus_li h2 *:not(i),
|
||||
.ets_mm_megamenu .mm_menus_li h3 *:not(i),
|
||||
.ets_mm_megamenu .mm_menus_li > a{
|
||||
font-family: font1;
|
||||
}
|
||||
.ets_mm_megamenu *:not(.fa):not(i){
|
||||
font-family: font2;
|
||||
}
|
||||
|
||||
.ets_mm_block *{
|
||||
font-size: text_fontsizepx;
|
||||
}
|
||||
|
||||
@media (min-width: 768px){
|
||||
/*layout 1*/
|
||||
.ets_mm_megamenu.layout_layout1{
|
||||
background: l1_color1;
|
||||
}
|
||||
.layout_layout1 .ets_mm_megamenu_content{
|
||||
background: linear-gradient(#FFFFFF, #F2F2F2) repeat scroll 0 0 rgba(0, 0, 0, 0);
|
||||
background: -webkit-linear-gradient(#FFFFFF, #F2F2F2) repeat scroll 0 0 rgba(0, 0, 0, 0);
|
||||
background: -o-linear-gradient(#FFFFFF, #F2F2F2) repeat scroll 0 0 rgba(0, 0, 0, 0);
|
||||
}
|
||||
.ets_mm_megamenu.layout_layout1:not(.ybc_vertical_menu) .mm_menus_ul{
|
||||
background: l1_color1;
|
||||
}
|
||||
|
||||
#header .layout_layout1:not(.ybc_vertical_menu) .mm_menus_li > a,
|
||||
.layout_layout1 .ybc-menu-vertical-button,
|
||||
.layout_layout1 .mm_extra_item *{
|
||||
color: l1_color2
|
||||
}
|
||||
.layout_layout1 .ybc-menu-vertical-button .ybc-menu-button-toggle_icon_default .icon-bar{
|
||||
background-color: l1_color2
|
||||
}
|
||||
.layout_layout1 .mm_menus_li:hover > a,
|
||||
.layout_layout1 .mm_menus_li.active > a,
|
||||
#header .layout_layout1 .mm_menus_li:hover > a,
|
||||
#header .layout_layout1 .mm_menus_li.menu_hover > a,
|
||||
.layout_layout1:hover .ybc-menu-vertical-button,
|
||||
.layout_layout1 .mm_extra_item button[type="submit"]:hover i,
|
||||
#header .layout_layout1 .mm_menus_li.active > a{
|
||||
color: l1_color3;
|
||||
}
|
||||
|
||||
.layout_layout1:not(.ybc_vertical_menu) .mm_menus_li > a:before,
|
||||
.layout_layout1.ybc_vertical_menu:hover .ybc-menu-vertical-button:before,
|
||||
.layout_layout1:hover .ybc-menu-vertical-button .ybc-menu-button-toggle_icon_default .icon-bar,
|
||||
.ybc-menu-vertical-button.layout_layout1:hover{background-color: l1_color3;}
|
||||
|
||||
.layout_layout1:not(.ybc_vertical_menu) .mm_menus_li:hover > a,
|
||||
.layout_layout1:not(.ybc_vertical_menu) .mm_menus_li.menu_hover > a,
|
||||
.ets_mm_megamenu.layout_layout1.ybc_vertical_menu:hover,
|
||||
#header .layout_layout1:not(.ybc_vertical_menu) .mm_menus_li:hover > a,
|
||||
#header .layout_layout1:not(.ybc_vertical_menu) .mm_menus_li.menu_hover > a,
|
||||
.ets_mm_megamenu.layout_layout1.ybc_vertical_menu:hover{
|
||||
background: l1_color4;
|
||||
}
|
||||
|
||||
.layout_layout1.ets_mm_megamenu .mm_columns_ul,
|
||||
.layout_layout1.ybc_vertical_menu .mm_menus_ul{
|
||||
background-color: l1_color5;
|
||||
}
|
||||
#header .layout_layout1 .ets_mm_block_content a,
|
||||
#header .layout_layout1 .ets_mm_block_content p,
|
||||
.layout_layout1.ybc_vertical_menu .mm_menus_li > a,
|
||||
#header .layout_layout1.ybc_vertical_menu .mm_menus_li > a{
|
||||
color: l1_color6;
|
||||
}
|
||||
|
||||
.layout_layout1 .mm_columns_ul h1,
|
||||
.layout_layout1 .mm_columns_ul h2,
|
||||
.layout_layout1 .mm_columns_ul h3,
|
||||
.layout_layout1 .mm_columns_ul h4,
|
||||
.layout_layout1 .mm_columns_ul h5,
|
||||
.layout_layout1 .mm_columns_ul h6,
|
||||
.layout_layout1 .mm_columns_ul .ets_mm_block > h1 a,
|
||||
.layout_layout1 .mm_columns_ul .ets_mm_block > h2 a,
|
||||
.layout_layout1 .mm_columns_ul .ets_mm_block > h3 a,
|
||||
.layout_layout1 .mm_columns_ul .ets_mm_block > h4 a,
|
||||
.layout_layout1 .mm_columns_ul .ets_mm_block > h5 a,
|
||||
.layout_layout1 .mm_columns_ul .ets_mm_block > h6 a,
|
||||
#header .layout_layout1 .mm_columns_ul .ets_mm_block > h1 a,
|
||||
#header .layout_layout1 .mm_columns_ul .ets_mm_block > h2 a,
|
||||
#header .layout_layout1 .mm_columns_ul .ets_mm_block > h3 a,
|
||||
#header .layout_layout1 .mm_columns_ul .ets_mm_block > h4 a,
|
||||
#header .layout_layout1 .mm_columns_ul .ets_mm_block > h5 a,
|
||||
#header .layout_layout1 .mm_columns_ul .ets_mm_block > h6 a,
|
||||
.layout_layout1 .mm_columns_ul .h1,
|
||||
.layout_layout1 .mm_columns_ul .h2,
|
||||
.layout_layout1 .mm_columns_ul .h3,
|
||||
.layout_layout1 .mm_columns_ul .h4,
|
||||
.layout_layout1 .mm_columns_ul .h5,
|
||||
.layout_layout1 .mm_columns_ul .h6{
|
||||
color: l1_color8;
|
||||
}
|
||||
|
||||
|
||||
.layout_layout1 li:hover > a,
|
||||
.layout_layout1 li > a:hover,
|
||||
.layout_layout1 .mm_tabs_li.open .mm_tab_toggle_title,
|
||||
.layout_layout1 .mm_tabs_li.open .mm_tab_toggle_title a,
|
||||
.layout_layout1 .mm_tabs_li:hover .mm_tab_toggle_title,
|
||||
.layout_layout1 .mm_tabs_li:hover .mm_tab_toggle_title a,
|
||||
#header .layout_layout1 .mm_tabs_li.open .mm_tab_toggle_title,
|
||||
#header .layout_layout1 .mm_tabs_li.open .mm_tab_toggle_title a,
|
||||
#header .layout_layout1 .mm_tabs_li:hover .mm_tab_toggle_title,
|
||||
#header .layout_layout1 .mm_tabs_li:hover .mm_tab_toggle_title a,
|
||||
.layout_layout1.ybc_vertical_menu .mm_menus_li > a,
|
||||
#header .layout_layout1 li:hover > a,
|
||||
.layout_layout1.ybc_vertical_menu .mm_menus_li:hover > a,
|
||||
#header .layout_layout1.ybc_vertical_menu .mm_menus_li:hover > a,
|
||||
#header .layout_layout1 .mm_columns_ul .mm_block_type_product .product-title > a:hover,
|
||||
#header .layout_layout1 li > a:hover{color: l1_color7;}
|
||||
|
||||
|
||||
/*end layout 1*/
|
||||
|
||||
|
||||
/*layout 2*/
|
||||
.ets_mm_megamenu.layout_layout2{
|
||||
background-color: l2_color1;
|
||||
}
|
||||
|
||||
#header .layout_layout2:not(.ybc_vertical_menu) .mm_menus_li > a,
|
||||
.layout_layout2 .ybc-menu-vertical-button,
|
||||
.layout_layout2 .mm_extra_item *{
|
||||
color: l2_color2
|
||||
}
|
||||
.layout_layout2 .ybc-menu-vertical-button .ybc-menu-button-toggle_icon_default .icon-bar{
|
||||
background-color: l2_color2
|
||||
}
|
||||
.layout_layout2:not(.ybc_vertical_menu) .mm_menus_li:hover > a,
|
||||
.layout_layout2:not(.ybc_vertical_menu) .mm_menus_li.active > a,
|
||||
#header .layout_layout2:not(.ybc_vertical_menu) .mm_menus_li:hover > a,
|
||||
.layout_layout2:hover .ybc-menu-vertical-button,
|
||||
.layout_layout2 .mm_extra_item button[type="submit"]:hover i,
|
||||
#header .layout_layout2:not(.ybc_vertical_menu) .mm_menus_li.active > a{color: l2_color3;}
|
||||
|
||||
.layout_layout2:hover .ybc-menu-vertical-button .ybc-menu-button-toggle_icon_default .icon-bar{
|
||||
background-color: l2_color3;
|
||||
}
|
||||
.layout_layout2:not(.ybc_vertical_menu) .mm_menus_li:hover > a,
|
||||
#header .layout_layout2:not(.ybc_vertical_menu) .mm_menus_li:hover > a,
|
||||
.ets_mm_megamenu.layout_layout2.ybc_vertical_menu:hover{
|
||||
background-color: l2_color4;
|
||||
}
|
||||
|
||||
.layout_layout2.ets_mm_megamenu .mm_columns_ul,
|
||||
.layout_layout2.ybc_vertical_menu .mm_menus_ul{
|
||||
background-color: l2_color5;
|
||||
}
|
||||
#header .layout_layout2 .ets_mm_block_content a,
|
||||
.layout_layout2.ybc_vertical_menu .mm_menus_li > a,
|
||||
#header .layout_layout2.ybc_vertical_menu .mm_menus_li > a,
|
||||
#header .layout_layout2 .ets_mm_block_content p{
|
||||
color: l2_color6;
|
||||
}
|
||||
|
||||
.layout_layout2 .mm_columns_ul h1,
|
||||
.layout_layout2 .mm_columns_ul h2,
|
||||
.layout_layout2 .mm_columns_ul h3,
|
||||
.layout_layout2 .mm_columns_ul h4,
|
||||
.layout_layout2 .mm_columns_ul h5,
|
||||
.layout_layout2 .mm_columns_ul h6,
|
||||
.layout_layout2 .mm_columns_ul .ets_mm_block > h1 a,
|
||||
.layout_layout2 .mm_columns_ul .ets_mm_block > h2 a,
|
||||
.layout_layout2 .mm_columns_ul .ets_mm_block > h3 a,
|
||||
.layout_layout2 .mm_columns_ul .ets_mm_block > h4 a,
|
||||
.layout_layout2 .mm_columns_ul .ets_mm_block > h5 a,
|
||||
.layout_layout2 .mm_columns_ul .ets_mm_block > h6 a,
|
||||
#header .layout_layout2 .mm_columns_ul .ets_mm_block > h1 a,
|
||||
#header .layout_layout2 .mm_columns_ul .ets_mm_block > h2 a,
|
||||
#header .layout_layout2 .mm_columns_ul .ets_mm_block > h3 a,
|
||||
#header .layout_layout2 .mm_columns_ul .ets_mm_block > h4 a,
|
||||
#header .layout_layout2 .mm_columns_ul .ets_mm_block > h5 a,
|
||||
#header .layout_layout2 .mm_columns_ul .ets_mm_block > h6 a,
|
||||
.layout_layout2 .mm_columns_ul .h1,
|
||||
.layout_layout2 .mm_columns_ul .h2,
|
||||
.layout_layout2 .mm_columns_ul .h3,
|
||||
.layout_layout2 .mm_columns_ul .h4,
|
||||
.layout_layout2 .mm_columns_ul .h5,
|
||||
.layout_layout2 .mm_columns_ul .h6{
|
||||
color: l2_color8;
|
||||
}
|
||||
|
||||
|
||||
.layout_layout2 li:hover > a,
|
||||
.layout_layout2 li > a:hover,
|
||||
.layout_layout2 .mm_tabs_li.open .mm_tab_toggle_title,
|
||||
.layout_layout2 .mm_tabs_li.open .mm_tab_toggle_title a,
|
||||
.layout_layout2 .mm_tabs_li:hover .mm_tab_toggle_title,
|
||||
.layout_layout2 .mm_tabs_li:hover .mm_tab_toggle_title a,
|
||||
#header .layout_layout2 .mm_tabs_li.open .mm_tab_toggle_title,
|
||||
#header .layout_layout2 .mm_tabs_li.open .mm_tab_toggle_title a,
|
||||
#header .layout_layout2 .mm_tabs_li:hover .mm_tab_toggle_title,
|
||||
#header .layout_layout2 .mm_tabs_li:hover .mm_tab_toggle_title a,
|
||||
#header .layout_layout2 li:hover > a,
|
||||
.layout_layout2.ybc_vertical_menu .mm_menus_li > a,
|
||||
.layout_layout2.ybc_vertical_menu .mm_menus_li:hover > a,
|
||||
#header .layout_layout2.ybc_vertical_menu .mm_menus_li:hover > a,
|
||||
#header .layout_layout2 .mm_columns_ul .mm_block_type_product .product-title > a:hover,
|
||||
#header .layout_layout2 li > a:hover{color: l2_color7;}
|
||||
|
||||
|
||||
|
||||
/*layout 3*/
|
||||
.ets_mm_megamenu.layout_layout3,
|
||||
.layout_layout3 .mm_tab_li_content{
|
||||
background-color: l3_color1;
|
||||
|
||||
}
|
||||
#header .layout_layout3:not(.ybc_vertical_menu) .mm_menus_li > a,
|
||||
.layout_layout3 .ybc-menu-vertical-button,
|
||||
.layout_layout3 .mm_extra_item *{
|
||||
color: l3_color2
|
||||
}
|
||||
.layout_layout3 .ybc-menu-vertical-button .ybc-menu-button-toggle_icon_default .icon-bar{
|
||||
background-color: l3_color2
|
||||
}
|
||||
.layout_layout3 .mm_menus_li:hover > a,
|
||||
.layout_layout3 .mm_menus_li.active > a,
|
||||
.layout_layout3 .mm_extra_item button[type="submit"]:hover i,
|
||||
#header .layout_layout3 .mm_menus_li:hover > a,
|
||||
#header .layout_layout3 .mm_menus_li.active > a,
|
||||
.layout_layout3:hover .ybc-menu-vertical-button,
|
||||
.layout_layout3:hover .ybc-menu-vertical-button .ybc-menu-button-toggle_icon_default .icon-bar{
|
||||
color: l3_color3;
|
||||
}
|
||||
|
||||
.layout_layout3:not(.ybc_vertical_menu) .mm_menus_li:hover > a,
|
||||
#header .layout_layout3:not(.ybc_vertical_menu) .mm_menus_li:hover > a,
|
||||
.ets_mm_megamenu.layout_layout3.ybc_vertical_menu:hover,
|
||||
.layout_layout3 .mm_tabs_li.open .mm_columns_contents_ul,
|
||||
.layout_layout3 .mm_tabs_li.open .mm_tab_li_content {
|
||||
background-color: l3_color4;
|
||||
}
|
||||
.layout_layout3 .mm_tabs_li.open.mm_tabs_has_content .mm_tab_li_content .mm_tab_name::before{
|
||||
border-right-color: l3_color4;
|
||||
}
|
||||
.layout_layout3.ets_mm_megamenu .mm_columns_ul,
|
||||
.ybc_vertical_menu.layout_layout3 .mm_menus_ul.ets_mn_submenu_full_height .mm_menus_li:hover a::before,
|
||||
.layout_layout3.ybc_vertical_menu .mm_menus_ul{
|
||||
background-color: l3_color5;
|
||||
border-color: l3_color5;
|
||||
}
|
||||
#header .layout_layout3 .ets_mm_block_content a,
|
||||
#header .layout_layout3 .ets_mm_block_content p,
|
||||
.layout_layout3.ybc_vertical_menu .mm_menus_li > a,
|
||||
#header .layout_layout3.ybc_vertical_menu .mm_menus_li > a{
|
||||
color: l3_color6;
|
||||
}
|
||||
|
||||
.layout_layout3 .mm_columns_ul h1,
|
||||
.layout_layout3 .mm_columns_ul h2,
|
||||
.layout_layout3 .mm_columns_ul h3,
|
||||
.layout_layout3 .mm_columns_ul h4,
|
||||
.layout_layout3 .mm_columns_ul h5,
|
||||
.layout_layout3 .mm_columns_ul h6,
|
||||
.layout_layout3 .mm_columns_ul .ets_mm_block > h1 a,
|
||||
.layout_layout3 .mm_columns_ul .ets_mm_block > h2 a,
|
||||
.layout_layout3 .mm_columns_ul .ets_mm_block > h3 a,
|
||||
.layout_layout3 .mm_columns_ul .ets_mm_block > h4 a,
|
||||
.layout_layout3 .mm_columns_ul .ets_mm_block > h5 a,
|
||||
.layout_layout3 .mm_columns_ul .ets_mm_block > h6 a,
|
||||
#header .layout_layout3 .mm_columns_ul .ets_mm_block > h1 a,
|
||||
#header .layout_layout3 .mm_columns_ul .ets_mm_block > h2 a,
|
||||
#header .layout_layout3 .mm_columns_ul .ets_mm_block > h3 a,
|
||||
#header .layout_layout3 .mm_columns_ul .ets_mm_block > h4 a,
|
||||
#header .layout_layout3 .mm_columns_ul .ets_mm_block > h5 a,
|
||||
#header .layout_layout3 .mm_columns_ul .ets_mm_block > h6 a,
|
||||
.layout_layout3 .mm_columns_ul .h1,
|
||||
.layout_layout3 .mm_columns_ul .h2,
|
||||
.layout_layout3 .mm_columns_ul .h3,
|
||||
.layout_layout3.ybc_vertical_menu .mm_menus_li:hover > a,
|
||||
#header .layout_layout3.ybc_vertical_menu .mm_menus_li:hover > a,
|
||||
.layout_layout3 .mm_columns_ul .h4,
|
||||
.layout_layout3 .mm_columns_ul .h5,
|
||||
.layout_layout3 .mm_columns_ul .h6{
|
||||
color: l3_color8;
|
||||
}
|
||||
|
||||
|
||||
.layout_layout3 li:hover > a,
|
||||
.layout_layout3 li > a:hover,
|
||||
.layout_layout3 .mm_tabs_li.open .mm_tab_toggle_title,
|
||||
.layout_layout3 .mm_tabs_li.open .mm_tab_toggle_title a,
|
||||
.layout_layout3 .mm_tabs_li:hover .mm_tab_toggle_title,
|
||||
.layout_layout3 .mm_tabs_li:hover .mm_tab_toggle_title a,
|
||||
#header .layout_layout3 .mm_tabs_li.open .mm_tab_toggle_title,
|
||||
#header .layout_layout3 .mm_tabs_li.open .mm_tab_toggle_title a,
|
||||
#header .layout_layout3 .mm_tabs_li:hover .mm_tab_toggle_title,
|
||||
#header .layout_layout3 .mm_tabs_li:hover .mm_tab_toggle_title a,
|
||||
#header .layout_layout3 li:hover > a,
|
||||
#header .layout_layout3 .mm_columns_ul .mm_block_type_product .product-title > a:hover,
|
||||
#header .layout_layout3 li > a:hover,
|
||||
.layout_layout3.ybc_vertical_menu .mm_menus_li > a,
|
||||
.layout_layout3 .has-sub .ets_mm_categories li > a:hover,
|
||||
#header .layout_layout3 .has-sub .ets_mm_categories li > a:hover{color: l3_color7;}
|
||||
|
||||
|
||||
/*layout 4*/
|
||||
|
||||
.ets_mm_megamenu.layout_layout4{
|
||||
background-color: l4_color1;
|
||||
}
|
||||
.ets_mm_megamenu.layout_layout4:not(.ybc_vertical_menu) .mm_menus_ul{
|
||||
background: l4_color1;
|
||||
}
|
||||
|
||||
#header .layout_layout4:not(.ybc_vertical_menu) .mm_menus_li > a,
|
||||
.layout_layout4 .ybc-menu-vertical-button,
|
||||
.layout_layout4 .mm_extra_item *{
|
||||
color: l4_color2
|
||||
}
|
||||
.layout_layout4 .ybc-menu-vertical-button .ybc-menu-button-toggle_icon_default .icon-bar{
|
||||
background-color: l4_color2
|
||||
}
|
||||
|
||||
.layout_layout4 .mm_menus_li:hover > a,
|
||||
.layout_layout4 .mm_menus_li.active > a,
|
||||
#header .layout_layout4 .mm_menus_li:hover > a,
|
||||
.layout_layout4:hover .ybc-menu-vertical-button,
|
||||
#header .layout_layout4 .mm_menus_li.active > a{color: l4_color3;}
|
||||
|
||||
.layout_layout4:hover .ybc-menu-vertical-button .ybc-menu-button-toggle_icon_default .icon-bar{
|
||||
background-color: l4_color3;
|
||||
}
|
||||
|
||||
.layout_layout4:not(.ybc_vertical_menu) .mm_menus_li:hover > a,
|
||||
.layout_layout4:not(.ybc_vertical_menu) .mm_menus_li.active > a,
|
||||
.layout_layout4:not(.ybc_vertical_menu) .mm_menus_li:hover > span,
|
||||
.layout_layout4:not(.ybc_vertical_menu) .mm_menus_li.active > span,
|
||||
#header .layout_layout4:not(.ybc_vertical_menu) .mm_menus_li:hover > a,
|
||||
#header .layout_layout4:not(.ybc_vertical_menu) .mm_menus_li.active > a,
|
||||
.layout_layout4:not(.ybc_vertical_menu) .mm_menus_li:hover > a,
|
||||
#header .layout_layout4:not(.ybc_vertical_menu) .mm_menus_li:hover > a,
|
||||
.ets_mm_megamenu.layout_layout4.ybc_vertical_menu:hover,
|
||||
#header .layout_layout4 .mm_menus_li:hover > span,
|
||||
#header .layout_layout4 .mm_menus_li.active > span{
|
||||
background-color: l4_color4;
|
||||
}
|
||||
.layout_layout4 .ets_mm_megamenu_content {
|
||||
border-bottom-color: l4_color4;
|
||||
}
|
||||
|
||||
.layout_layout4.ets_mm_megamenu .mm_columns_ul,
|
||||
.ybc_vertical_menu.layout_layout4 .mm_menus_ul .mm_menus_li:hover a::before,
|
||||
.layout_layout4.ybc_vertical_menu .mm_menus_ul{
|
||||
background-color: l4_color5;
|
||||
}
|
||||
#header .layout_layout4 .ets_mm_block_content a,
|
||||
.layout_layout4.ybc_vertical_menu .mm_menus_li > a,
|
||||
#header .layout_layout4.ybc_vertical_menu .mm_menus_li > a,
|
||||
#header .layout_layout4 .ets_mm_block_content p{
|
||||
color: l4_color6;
|
||||
}
|
||||
|
||||
.layout_layout4 .mm_columns_ul h1,
|
||||
.layout_layout4 .mm_columns_ul h2,
|
||||
.layout_layout4 .mm_columns_ul h3,
|
||||
.layout_layout4 .mm_columns_ul h4,
|
||||
.layout_layout4 .mm_columns_ul h5,
|
||||
.layout_layout4 .mm_columns_ul h6,
|
||||
.layout_layout4 .mm_columns_ul .ets_mm_block > h1 a,
|
||||
.layout_layout4 .mm_columns_ul .ets_mm_block > h2 a,
|
||||
.layout_layout4 .mm_columns_ul .ets_mm_block > h3 a,
|
||||
.layout_layout4 .mm_columns_ul .ets_mm_block > h4 a,
|
||||
.layout_layout4 .mm_columns_ul .ets_mm_block > h5 a,
|
||||
.layout_layout4 .mm_columns_ul .ets_mm_block > h6 a,
|
||||
#header .layout_layout4 .mm_columns_ul .ets_mm_block > h1 a,
|
||||
#header .layout_layout4 .mm_columns_ul .ets_mm_block > h2 a,
|
||||
#header .layout_layout4 .mm_columns_ul .ets_mm_block > h3 a,
|
||||
#header .layout_layout4 .mm_columns_ul .ets_mm_block > h4 a,
|
||||
#header .layout_layout4 .mm_columns_ul .ets_mm_block > h5 a,
|
||||
#header .layout_layout4 .mm_columns_ul .ets_mm_block > h6 a,
|
||||
.layout_layout4 .mm_columns_ul .h1,
|
||||
.layout_layout4 .mm_columns_ul .h2,
|
||||
.layout_layout4 .mm_columns_ul .h3,
|
||||
.layout_layout4 .mm_columns_ul .h4,
|
||||
.layout_layout4 .mm_columns_ul .h5,
|
||||
.layout_layout4 .mm_columns_ul .h6{
|
||||
color: l4_color8;
|
||||
}
|
||||
|
||||
.layout_layout4 li:hover > a,
|
||||
.layout_layout4 li > a:hover,
|
||||
.layout_layout4 .mm_tabs_li.open .mm_tab_toggle_title,
|
||||
.layout_layout4 .mm_tabs_li.open .mm_tab_toggle_title a,
|
||||
.layout_layout4 .mm_tabs_li:hover .mm_tab_toggle_title,
|
||||
.layout_layout4 .mm_tabs_li:hover .mm_tab_toggle_title a,
|
||||
#header .layout_layout4 .mm_tabs_li.open .mm_tab_toggle_title,
|
||||
#header .layout_layout4 .mm_tabs_li.open .mm_tab_toggle_title a,
|
||||
#header .layout_layout4 .mm_tabs_li:hover .mm_tab_toggle_title,
|
||||
#header .layout_layout4 .mm_tabs_li:hover .mm_tab_toggle_title a,
|
||||
#header .layout_layout4 li:hover > a,
|
||||
.layout_layout4.ybc_vertical_menu .mm_menus_li > a,
|
||||
.layout_layout4.ybc_vertical_menu .mm_menus_li:hover > a,
|
||||
#header .layout_layout4.ybc_vertical_menu .mm_menus_li:hover > a,
|
||||
#header .layout_layout4 .mm_columns_ul .mm_block_type_product .product-title > a:hover,
|
||||
#header .layout_layout4 li > a:hover{color: l4_color7;}
|
||||
|
||||
/* end layout 4*/
|
||||
|
||||
|
||||
|
||||
|
||||
/* Layout 5*/
|
||||
.ets_mm_megamenu.layout_layout5{
|
||||
background-color: l5_color1;
|
||||
}
|
||||
.ets_mm_megamenu.layout_layout5:not(.ybc_vertical_menu) .mm_menus_ul{
|
||||
background: l5_color1;
|
||||
}
|
||||
|
||||
#header .layout_layout5:not(.ybc_vertical_menu) .mm_menus_li > a,
|
||||
.layout_layout5 .ybc-menu-vertical-button,
|
||||
.layout_layout5 .mm_extra_item *{
|
||||
color: l5_color2
|
||||
}
|
||||
.layout_layout5 .ybc-menu-vertical-button .ybc-menu-button-toggle_icon_default .icon-bar{
|
||||
background-color: l5_color2
|
||||
}
|
||||
.layout_layout5 .mm_menus_li:hover > a,
|
||||
.layout_layout5 .mm_menus_li.active > a,
|
||||
.layout_layout5 .mm_extra_item button[type="submit"]:hover i,
|
||||
#header .layout_layout5 .mm_menus_li:hover > a,
|
||||
#header .layout_layout5 .mm_menus_li.active > a,
|
||||
.layout_layout5:hover .ybc-menu-vertical-button{
|
||||
color: l5_color3;
|
||||
}
|
||||
.layout_layout5:hover .ybc-menu-vertical-button .ybc-menu-button-toggle_icon_default .icon-bar{
|
||||
background-color: l5_color3;
|
||||
}
|
||||
|
||||
.layout_layout5 .mm_menus_li > a:before{background-color: l5_color3;}
|
||||
|
||||
|
||||
.layout_layout5:not(.ybc_vertical_menu) .mm_menus_li:hover > a,
|
||||
#header .layout_layout5:not(.ybc_vertical_menu) .mm_menus_li:hover > a,
|
||||
.ets_mm_megamenu.layout_layout5.ybc_vertical_menu:hover,
|
||||
#header .layout_layout5 .mm_menus_li:hover > a{
|
||||
background-color: l5_color4;
|
||||
}
|
||||
|
||||
.layout_layout5.ets_mm_megamenu .mm_columns_ul,
|
||||
.ybc_vertical_menu.layout_layout5 .mm_menus_ul .mm_menus_li:hover a::before,
|
||||
.layout_layout5.ybc_vertical_menu .mm_menus_ul{
|
||||
background-color: l5_color5;
|
||||
}
|
||||
#header .layout_layout5 .ets_mm_block_content a,
|
||||
.layout_layout5.ybc_vertical_menu .mm_menus_li > a,
|
||||
#header .layout_layout5.ybc_vertical_menu .mm_menus_li > a,
|
||||
#header .layout_layout5 .ets_mm_block_content p{
|
||||
color: l5_color6;
|
||||
}
|
||||
|
||||
.layout_layout5 .mm_columns_ul h1,
|
||||
.layout_layout5 .mm_columns_ul h2,
|
||||
.layout_layout5 .mm_columns_ul h3,
|
||||
.layout_layout5 .mm_columns_ul h4,
|
||||
.layout_layout5 .mm_columns_ul h5,
|
||||
.layout_layout5 .mm_columns_ul h6,
|
||||
.layout_layout5 .mm_columns_ul .ets_mm_block > h1 a,
|
||||
.layout_layout5 .mm_columns_ul .ets_mm_block > h2 a,
|
||||
.layout_layout5 .mm_columns_ul .ets_mm_block > h3 a,
|
||||
.layout_layout5 .mm_columns_ul .ets_mm_block > h4 a,
|
||||
.layout_layout5 .mm_columns_ul .ets_mm_block > h5 a,
|
||||
.layout_layout5 .mm_columns_ul .ets_mm_block > h6 a,
|
||||
#header .layout_layout5 .mm_columns_ul .ets_mm_block > h1 a,
|
||||
#header .layout_layout5 .mm_columns_ul .ets_mm_block > h2 a,
|
||||
#header .layout_layout5 .mm_columns_ul .ets_mm_block > h3 a,
|
||||
#header .layout_layout5 .mm_columns_ul .ets_mm_block > h4 a,
|
||||
#header .layout_layout5 .mm_columns_ul .ets_mm_block > h5 a,
|
||||
#header .layout_layout5 .mm_columns_ul .ets_mm_block > h6 a,
|
||||
.layout_layout5 .mm_columns_ul .h1,
|
||||
.layout_layout5 .mm_columns_ul .h2,
|
||||
.layout_layout5 .mm_columns_ul .h3,
|
||||
.layout_layout5 .mm_columns_ul .h4,
|
||||
.layout_layout5 .mm_columns_ul .h5,
|
||||
.layout_layout5 .mm_columns_ul .h6{
|
||||
color: l5_color8;
|
||||
}
|
||||
|
||||
.layout_layout5 li:hover > a,
|
||||
.layout_layout5 li > a:hover,
|
||||
.layout_layout5 .mm_tabs_li.open .mm_tab_toggle_title,
|
||||
.layout_layout5 .mm_tabs_li.open .mm_tab_toggle_title a,
|
||||
.layout_layout5 .mm_tabs_li:hover .mm_tab_toggle_title,
|
||||
.layout_layout5 .mm_tabs_li:hover .mm_tab_toggle_title a,
|
||||
#header .layout_layout5 .mm_tabs_li.open .mm_tab_toggle_title,
|
||||
#header .layout_layout5 .mm_tabs_li.open .mm_tab_toggle_title a,
|
||||
#header .layout_layout5 .mm_tabs_li:hover .mm_tab_toggle_title,
|
||||
#header .layout_layout5 .mm_tabs_li:hover .mm_tab_toggle_title a,
|
||||
.layout_layout5.ybc_vertical_menu .mm_menus_li > a,
|
||||
#header .layout_layout5 li:hover > a,
|
||||
.layout_layout5.ybc_vertical_menu .mm_menus_li:hover > a,
|
||||
#header .layout_layout5.ybc_vertical_menu .mm_menus_li:hover > a,
|
||||
#header .layout_layout5 .mm_columns_ul .mm_block_type_product .product-title > a:hover,
|
||||
#header .layout_layout5 li > a:hover{color: l5_color7;}
|
||||
|
||||
/*end layout 5*/
|
||||
}
|
||||
|
||||
|
||||
@media (max-width: 767px){
|
||||
.ybc-menu-vertical-button,
|
||||
.transition_floating .close_menu,
|
||||
.transition_full .close_menu{
|
||||
background-color: m_bar_bg;
|
||||
color: m_bar_color;
|
||||
}
|
||||
.transition_floating .close_menu *,
|
||||
.transition_full .close_menu *,
|
||||
.ybc-menu-vertical-button .icon-bar{
|
||||
color: m_bar_color;
|
||||
}
|
||||
|
||||
.close_menu .icon-bar,
|
||||
.ybc-menu-vertical-button .icon-bar {
|
||||
background-color: m_bar_color;
|
||||
}
|
||||
.mm_menus_back_icon{
|
||||
border-color: m_bar_color;
|
||||
}
|
||||
|
||||
.layout_layout1 .mm_menus_li:hover > a,
|
||||
.layout_layout1 .mm_menus_li.menu_hover > a,
|
||||
#header .layout_layout1 .mm_menus_li.menu_hover > a,
|
||||
#header .layout_layout1 .mm_menus_li:hover > a{
|
||||
color: l1_color3;
|
||||
}
|
||||
.layout_layout1 .mm_has_sub.mm_menus_li:hover .arrow::before{
|
||||
/*border-color: l1_color3;*/
|
||||
}
|
||||
|
||||
|
||||
.layout_layout1 .mm_menus_li:hover > a,
|
||||
.layout_layout1 .mm_menus_li.menu_hover > a,
|
||||
#header .layout_layout1 .mm_menus_li.menu_hover > a,
|
||||
#header .layout_layout1 .mm_menus_li:hover > a{
|
||||
background-color: l1_color4;
|
||||
}
|
||||
.layout_layout1 li:hover > a,
|
||||
.layout_layout1 li > a:hover,
|
||||
#header .layout_layout1 li:hover > a,
|
||||
#header .layout_layout1 .mm_columns_ul .mm_block_type_product .product-title > a:hover,
|
||||
#header .layout_layout1 li > a:hover{
|
||||
color: l1_color7;
|
||||
}
|
||||
|
||||
/*------------------------------------------------------*/
|
||||
|
||||
|
||||
.layout_layout2 .mm_menus_li:hover > a,
|
||||
#header .layout_layout2 .mm_menus_li:hover > a{color: l2_color3;}
|
||||
.layout_layout2 .mm_has_sub.mm_menus_li:hover .arrow::before{
|
||||
border-color: l2_color3;
|
||||
}
|
||||
|
||||
.layout_layout2 .mm_menus_li:hover > a,
|
||||
#header .layout_layout2 .mm_menus_li:hover > a{
|
||||
background-color: l2_color4;
|
||||
}
|
||||
.layout_layout2 li:hover > a,
|
||||
.layout_layout2 li > a:hover,
|
||||
#header .layout_layout2 li:hover > a,
|
||||
#header .layout_layout2 .mm_columns_ul .mm_block_type_product .product-title > a:hover,
|
||||
#header .layout_layout2 li > a:hover{color: l2_color7;}
|
||||
|
||||
/*------------------------------------------------------*/
|
||||
|
||||
|
||||
|
||||
.layout_layout3 .mm_menus_li:hover > a,
|
||||
#header .layout_layout3 .mm_menus_li:hover > a{
|
||||
color: l3_color3;
|
||||
}
|
||||
.layout_layout3 .mm_has_sub.mm_menus_li:hover .arrow::before{
|
||||
border-color: l3_color3;
|
||||
}
|
||||
|
||||
.layout_layout3 .mm_menus_li:hover > a,
|
||||
#header .layout_layout3 .mm_menus_li:hover > a{
|
||||
background-color: l3_color4;
|
||||
}
|
||||
.layout_layout3 li:hover > a,
|
||||
.layout_layout3 li > a:hover,
|
||||
#header .layout_layout3 li:hover > a,
|
||||
#header .layout_layout3 .mm_columns_ul .mm_block_type_product .product-title > a:hover,
|
||||
#header .layout_layout3 li > a:hover,
|
||||
.layout_layout3 .has-sub .ets_mm_categories li > a:hover,
|
||||
#header .layout_layout3 .has-sub .ets_mm_categories li > a:hover{color: l3_color7;}
|
||||
|
||||
|
||||
|
||||
/*------------------------------------------------------*/
|
||||
|
||||
|
||||
.layout_layout4 .mm_menus_li:hover > a,
|
||||
#header .layout_layout4 .mm_menus_li:hover > a{
|
||||
color: l4_color3;
|
||||
}
|
||||
|
||||
.layout_layout4 .mm_has_sub.mm_menus_li:hover .arrow::before{
|
||||
border-color: l4_color3;
|
||||
}
|
||||
|
||||
.layout_layout4 .mm_menus_li:hover > a,
|
||||
#header .layout_layout4 .mm_menus_li:hover > a{
|
||||
background-color: l4_color4;
|
||||
}
|
||||
.layout_layout4 li:hover > a,
|
||||
.layout_layout4 li > a:hover,
|
||||
#header .layout_layout4 li:hover > a,
|
||||
#header .layout_layout4 .mm_columns_ul .mm_block_type_product .product-title > a:hover,
|
||||
#header .layout_layout4 li > a:hover{color: l4_color7;}
|
||||
|
||||
|
||||
/*------------------------------------------------------*/
|
||||
|
||||
|
||||
.layout_layout5 .mm_menus_li:hover > a,
|
||||
#header .layout_layout5 .mm_menus_li:hover > a{color: l5_color3;}
|
||||
.layout_layout5 .mm_has_sub.mm_menus_li:hover .arrow::before{
|
||||
border-color: l5_color3;
|
||||
}
|
||||
|
||||
.layout_layout5 .mm_menus_li:hover > a,
|
||||
#header .layout_layout5 .mm_menus_li:hover > a{
|
||||
background-color: l5_color4;
|
||||
}
|
||||
.layout_layout5 li:hover > a,
|
||||
.layout_layout5 li > a:hover,
|
||||
#header .layout_layout5 li:hover > a,
|
||||
#header .layout_layout5 .mm_columns_ul .mm_block_type_product .product-title > a:hover,
|
||||
#header .layout_layout5 li > a:hover{color: l5_color7;}
|
||||
|
||||
/*------------------------------------------------------*/
|
||||
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
148
modules/ets_megamenu/views/css/fix16.css
Normal file
@@ -0,0 +1,148 @@
|
||||
.mm_extra_item .ajax_cart_quantity {
|
||||
margin-right: 3px;
|
||||
}
|
||||
#header .mm_extra_item .shopping_cart > a:first-child::after,
|
||||
.mm_extra_item .shopping_cart > a:first-child::after {
|
||||
padding: 0 0 0 3px;
|
||||
}
|
||||
.mm_block_type_product .product_list .ajax_block_product {
|
||||
padding-left: 0;
|
||||
padding-right: 0;
|
||||
}
|
||||
.mm_extra_item .shopping_cart,
|
||||
#header .mm_extra_item .shopping_cart {
|
||||
padding-top: 0;
|
||||
width: auto;
|
||||
}
|
||||
.mm_extra_item #search_block_top {
|
||||
padding-top: 0;
|
||||
}
|
||||
.mm_extra_item .layer_cart_overlay {
|
||||
height: 100% !important;
|
||||
max-height: 100% !important;
|
||||
max-width: 100% !important;
|
||||
width: 100% !important;
|
||||
}
|
||||
.mm_extra_item #search_block_top .btn.button-search {
|
||||
background: transparent none repeat scroll 0 0;
|
||||
bottom: auto;
|
||||
box-shadow: none !important;
|
||||
-webkit-box-shadow: none !important;
|
||||
color: #333;
|
||||
line-height: 30px;
|
||||
outline: medium none !important;
|
||||
-webkit-outline: medium none !important;
|
||||
padding: 0 3px;
|
||||
top: 50%;
|
||||
transform: translateY(-50%);
|
||||
-webkit-transform: translateY(-50%);
|
||||
width: auto;
|
||||
}
|
||||
.mm_extra_item.active #search_block_top .btn.button-search{
|
||||
padding-right: 8px;
|
||||
}
|
||||
.sticky_enabled .mm_extra_item #layer_cart {
|
||||
float: left;
|
||||
height: auto;
|
||||
left: 50%;
|
||||
margin: 0;
|
||||
max-height: 90%;
|
||||
max-width: 1170px;
|
||||
overflow: auto;
|
||||
position: fixed;
|
||||
top: 50%!important;
|
||||
transform: translate3d(-50%, -50%, 0px);
|
||||
-webkit-transform: translate3d(-50%, -50%, 0px);
|
||||
width: 90%;
|
||||
white-space: normal;
|
||||
}
|
||||
.mm_extra_item .shopping_cart > a:first-child {
|
||||
background: transparent none repeat scroll 0 0;
|
||||
color: #333;
|
||||
display: flex;
|
||||
display: -o-flex;
|
||||
display: -ms-flex;
|
||||
display: -moz-flex;
|
||||
display: -webkit-flex;
|
||||
line-height: 24px;
|
||||
padding: 17px 0;
|
||||
text-shadow: none;
|
||||
white-space: nowrap;
|
||||
}
|
||||
.mm_extra_item .header_user_info {
|
||||
border-color: #e7e7e7;
|
||||
}
|
||||
.mm_extra_item > div {
|
||||
max-height: 58px;
|
||||
}
|
||||
#header .mm_extra_item .cart_block,
|
||||
.mm_extra_item .cart_block{
|
||||
top: 100%!important;
|
||||
min-width: 250px;
|
||||
}
|
||||
.mm_extra_item .header_user_info a {
|
||||
padding: 20px 10px;
|
||||
color: #333333;
|
||||
}
|
||||
.mm_extra_item a:hover {
|
||||
background: transparent none repeat scroll 0 0;
|
||||
}
|
||||
.mm_extra_item .shopping_cart > a:first-child b,
|
||||
.mm_extra_item .ajax_cart_product_txt_s,
|
||||
.mm_extra_item .ajax_cart_no_product,
|
||||
.mm_extra_item .ajax_cart_product_txt{
|
||||
display: none!important;
|
||||
}
|
||||
|
||||
|
||||
.mm_extra_item .shopping_cart > a:first-child b,
|
||||
.mm_extra_item .shopping_cart > a:first-child::before{
|
||||
color: #333;
|
||||
}
|
||||
.mm_extra_item:not(.mm_display_search_default) input[type="text"] {
|
||||
bottom: 0;
|
||||
height: 40px!important;
|
||||
padding: 0 10px!important;
|
||||
}
|
||||
@media (min-width: 768px){
|
||||
.hook-default.layout_layout5 .mm_menus_ul {
|
||||
margin-bottom: -3px;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@media (max-width: 767px){
|
||||
.mm_extra_item > div {
|
||||
height: 48px;
|
||||
}
|
||||
.mm_extra_item .shopping_cart > a:first-child::before {
|
||||
padding-right: 7px;
|
||||
}
|
||||
.mm_extra_item .header_user_info a {
|
||||
padding: 15px 10px;
|
||||
}
|
||||
.mm_extra_item .shopping_cart > a:first-child {
|
||||
padding: 12px 0;
|
||||
}
|
||||
.mm_extra_item #search_block_top .btn.button-search {
|
||||
line-height: 28px;
|
||||
}
|
||||
}
|
||||
|
||||
@media (max-width: 479px){
|
||||
.mm_extra_item.active input[type="text"] {
|
||||
width: 100%!important;
|
||||
}
|
||||
.mm_extra_item.active #search_block_top {
|
||||
position: absolute;
|
||||
right: 0;
|
||||
width: 100%;
|
||||
z-index: 1;
|
||||
}
|
||||
.mm_extra_item {
|
||||
position: static;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
170
modules/ets_megamenu/views/css/fix17.css
Normal file
@@ -0,0 +1,170 @@
|
||||
|
||||
.ets_mm_megamenu.hook-default {
|
||||
clear: none;
|
||||
padding: 0;
|
||||
margin-top: 0;
|
||||
}
|
||||
|
||||
.layout_layout5.hook-default .mm_menus_ul .mm_menus_li:not(:nth-child(2)):after {
|
||||
display: none;
|
||||
}
|
||||
.container .ets_mm_megamenu .container {
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
.mm_block_type_product .thumbnail-container .product-description {
|
||||
background: none repeat scroll 0 0 rgba(0, 0, 0, 0);
|
||||
height: auto;
|
||||
position: relative;
|
||||
text-align: left;
|
||||
width: auto;
|
||||
}
|
||||
.layout_layout4 .mm_extra_item .cart-preview a {
|
||||
padding: 13px 0;
|
||||
}
|
||||
.ets-dir-rtl .mm_block_type_product .thumbnail-container .product-description,
|
||||
.ets-dir-rtl .mm_block_type_product .thumbnail-container .product-title > a {
|
||||
text-align: right;
|
||||
display: block;
|
||||
}
|
||||
|
||||
.mm_extra_item .cart-preview a {
|
||||
display: block;
|
||||
padding: 18px 0;
|
||||
}
|
||||
.mm_extra_item .user-info a {
|
||||
display: inline-block;
|
||||
padding: 18px 2px;
|
||||
line-height: 22px;
|
||||
}
|
||||
.layout_layout4 .mm_extra_item .user-info a {
|
||||
padding: 12px 2px;
|
||||
}
|
||||
.mm_block_type_product .thumbnail-container .thumbnail > img {
|
||||
margin-bottom: 0;
|
||||
margin-left: 0;
|
||||
}
|
||||
.mm_block_type_product .thumbnail-container .thumbnail {
|
||||
float: left;
|
||||
margin-right: 10px;
|
||||
width: 100px;
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
|
||||
.mm_block_type_product .thumbnail-container .thumbnail{
|
||||
border: 1px solid #D0D0D0;
|
||||
overflow: hidden;
|
||||
}
|
||||
.mm_block_type_product .thumbnail-container {
|
||||
box-shadow: none;
|
||||
height: auto;
|
||||
width: auto;
|
||||
margin-bottom: 10px;
|
||||
background-color: rgba(0, 0, 0, 0);
|
||||
}
|
||||
|
||||
|
||||
|
||||
.mm_block_type_product .thumbnail-container:hover, .mm_block_type_product .thumbnail-container:hover .product-description {
|
||||
box-shadow: none !important;
|
||||
}
|
||||
.mm_block_type_product .thumbnail-container .highlighted-informations {
|
||||
box-shadow: none;
|
||||
display: none;
|
||||
position: static;
|
||||
}
|
||||
.mm_block_type_product .thumbnail-container .product-title > a {
|
||||
font-weight: 600;
|
||||
line-height: 18px;
|
||||
text-align: left;
|
||||
}
|
||||
.mm_block_type_product .thumbnail-container .product-title {
|
||||
margin-top: 0;
|
||||
text-align: left;
|
||||
}
|
||||
.mm_block_type_product .product-miniature {
|
||||
clear: left;
|
||||
display: block;
|
||||
}
|
||||
.ets-dir-rtl .mm_block_type_product .product-miniature {
|
||||
clear: right;
|
||||
}
|
||||
.mm_block_type_product .product-miniature:not(:last-child) {
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
.mm_block_type_product .product-price-and-shipping {
|
||||
text-align: inherit !important;
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
.hook-default.layout_layout4 .mm_columns_ul > .mm_columns_li,
|
||||
.hook-default.layout_layout5 .mm_columns_ul > .mm_columns_li {
|
||||
border-left: medium none;
|
||||
}
|
||||
.ets-dir-rtl .mm_block_type_product .thumbnail-container .thumbnail {
|
||||
float: right;
|
||||
margin-right: 0px;
|
||||
margin-left: 10px;
|
||||
width: 90px;
|
||||
}
|
||||
.skin_default.layout_layout4.ets-dir-rtl .mm_columns_ul > .mm_columns_li:first-child,
|
||||
.skin_default.layout_layout5.ets-dir-rtl .mm_columns_ul > .mm_columns_li:first-child {
|
||||
border-left: none;
|
||||
}
|
||||
.layout_layout5.skin_default:not(.scroll_heading) .mm_blocks_li {
|
||||
padding: 0 10px;
|
||||
}
|
||||
|
||||
.hook-default .ets_mm_megamenu_content .container {
|
||||
padding: 0;
|
||||
}
|
||||
.hook-default.layout_layout5:not(.scroll_heading) .mm_bubble_text {
|
||||
top: -5px;
|
||||
}
|
||||
@media (min-width: 768px) and (max-width: 1199px){
|
||||
.changestatus .mm_extra_item .cart-preview a {
|
||||
display: block;
|
||||
padding: 13px 0;
|
||||
}
|
||||
}
|
||||
@media (min-width: 768px){
|
||||
.hook-default.layout_layout4:not(.scroll_heading) .mm_blocks_li {
|
||||
padding: 0 15px;
|
||||
}
|
||||
|
||||
.hook-default.layout_layout4:not(.scroll_heading) .mm_columns_ul > .mm_columns_li {
|
||||
margin: 20px 0 0;
|
||||
}
|
||||
.hook-default.layout_layout4:not(.scroll_heading) .mm_columns_ul > .mm_columns_li,
|
||||
.hook-default.layout_layout5:not(.scroll_heading) .mm_columns_ul > .mm_columns_li {
|
||||
margin: 10px 0;
|
||||
}
|
||||
}
|
||||
@media (max-width: 767px){
|
||||
.ets_mm_megamenu.hook-default {
|
||||
background-color: rgba(0, 0, 0, 0);
|
||||
margin-top: 10px;
|
||||
padding: 0 15px;
|
||||
width: 100%;
|
||||
}
|
||||
.mm_extra_item > div{
|
||||
margin-left: 0;
|
||||
}
|
||||
.ets-dir-rtl .mm_menu_content_title {
|
||||
float: right;
|
||||
}
|
||||
}
|
||||
|
||||
@media (max-width: 479px){
|
||||
.mm_extra_item.active input[type="text"]{
|
||||
width: 100%!important;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
2337
modules/ets_megamenu/views/css/font-awesome.css
vendored
Normal file
31
modules/ets_megamenu/views/css/index.php
Normal file
@@ -0,0 +1,31 @@
|
||||
<?php
|
||||
/**
|
||||
* 2007-2021 ETS-Soft
|
||||
*
|
||||
* NOTICE OF LICENSE
|
||||
*
|
||||
* This file is not open source! Each license that you purchased is only available for 1 wesite only.
|
||||
* If you want to use this file on more websites (or projects), you need to purchase additional licenses.
|
||||
* You are not allowed to redistribute, resell, lease, license, sub-license or offer our resources to any third party.
|
||||
*
|
||||
* 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 contact us for extra customization service at an affordable price
|
||||
*
|
||||
* @author ETS-Soft <etssoft.jsc@gmail.com>
|
||||
* @copyright 2007-2021 ETS-Soft
|
||||
* @license Valid for 1 website (or project) for each purchase of license
|
||||
* International Registered Trademark & Property of ETS-Soft
|
||||
*/
|
||||
|
||||
header("Expires: Mon, 26 Jul 1997 05:00:00 GMT");
|
||||
header("Last-Modified: ".gmdate("D, d M Y H:i:s")." GMT");
|
||||
|
||||
header("Cache-Control: no-store, no-cache, must-revalidate");
|
||||
header("Cache-Control: post-check=0, pre-check=0", false);
|
||||
header("Pragma: no-cache");
|
||||
|
||||
header("Location: ../");
|
||||
exit;
|
||||
2312
modules/ets_megamenu/views/css/megamenu-admin.css
Normal file
3458
modules/ets_megamenu/views/css/megamenu.css
Normal file
1974
modules/ets_megamenu/views/css/mm_admin-bak.css
Normal file
902
modules/ets_megamenu/views/css/other.css
Normal file
@@ -0,0 +1,902 @@
|
||||
.ets-mod{
|
||||
background: #fff;
|
||||
padding: 0;
|
||||
}
|
||||
.ets-mod.hidden,li.hidden{
|
||||
display: none!important;
|
||||
}
|
||||
.ets-mod-cats > li.active{
|
||||
font-weight: bold;
|
||||
}
|
||||
.ets-mod {
|
||||
position: fixed!important;
|
||||
bottom: 0;
|
||||
overflow: auto;
|
||||
}
|
||||
.ets-mod, .ets-mod * {
|
||||
box-sizing: border-box;
|
||||
}
|
||||
.ets-mod-header {
|
||||
display: flex;
|
||||
display: -webkit-flex;
|
||||
align-items: center;
|
||||
-webkit-align-items: center;
|
||||
padding: 40px 0 30px;
|
||||
margin-left: -15px;
|
||||
margin-right: -15px;
|
||||
}
|
||||
.ets-mod-logo img {
|
||||
max-width: 100%;
|
||||
}
|
||||
.ets-mod-cats_mobile{
|
||||
display: none;
|
||||
}
|
||||
a.ets-mod-external-link.btn {
|
||||
background: #E22B8C;
|
||||
width: 100%;
|
||||
display: block;
|
||||
clear: both;
|
||||
text-align: center;
|
||||
color: #fff;
|
||||
text-decoration: none!important;
|
||||
font-size: 18px;
|
||||
padding: 10px;
|
||||
margin-bottom: 20px;
|
||||
border-radius: 4px;
|
||||
transition: all 0.2s;
|
||||
-webkit-transition: all 0.2s;
|
||||
}
|
||||
a.ets-mod-external-link.btn:hover {
|
||||
background: #ca3282;
|
||||
}
|
||||
.ets-mod-close {
|
||||
position: absolute;
|
||||
right: 10px;
|
||||
top: 6px;
|
||||
font-size: 0;
|
||||
cursor: pointer;
|
||||
width: 30px;
|
||||
transform: rotate(45deg);
|
||||
-webkit-transform: rotate(45deg);
|
||||
height: 30px;
|
||||
}
|
||||
.ets-mod-close:hover:after,
|
||||
.ets-mod-close:hover:before{
|
||||
background: #555;
|
||||
}
|
||||
.ets-mod-close:after {
|
||||
content: "";
|
||||
width: 27px;
|
||||
top: 50%;
|
||||
left: 50%;
|
||||
height: 1px;
|
||||
background: #999;
|
||||
display: inline-block;
|
||||
transform: translate3d(-50%,-50%,0);
|
||||
-webkit-transform: translate3d(-50%,-50%,0);
|
||||
position: absolute;
|
||||
}
|
||||
|
||||
.ets-mod-close:before {
|
||||
content: "";
|
||||
height: 27px;
|
||||
width: 1px;
|
||||
background: #999;
|
||||
display: inline-block;
|
||||
transform: translate3d(-50%,-50%,0);
|
||||
-webkit-transform: translate3d(-50%,-50%,0);
|
||||
top: 50%;
|
||||
position: absolute;
|
||||
left: 50%;
|
||||
}
|
||||
.ets-mod-external {
|
||||
clear: both;
|
||||
padding-left: 15px;
|
||||
padding-right: 15px;
|
||||
}
|
||||
.ets-mod-intro {
|
||||
padding: 0 30px;
|
||||
font-size: 14px;
|
||||
line-height: 1.7;
|
||||
width: 60%;
|
||||
}
|
||||
.ets-mod-logo {
|
||||
width: 25%;
|
||||
padding: 0 15px;
|
||||
}
|
||||
.mod-footer > .mod-price:first-child {
|
||||
width: 100%;
|
||||
text-align: right;
|
||||
justify-content: flex-end;
|
||||
-webkit-justify-content: flex-end;
|
||||
}
|
||||
.ets-badge-partner span,
|
||||
.ets-badge-superhero span {
|
||||
text-align: center;
|
||||
display: block;
|
||||
font-size: 14px;
|
||||
}
|
||||
.ets-badge-superhero {
|
||||
width: 100px;
|
||||
}
|
||||
.ets-badge-partner {
|
||||
max-width: 121px;
|
||||
padding: 0 10px;
|
||||
text-align: center;
|
||||
}
|
||||
.mod-desc {
|
||||
display: block;
|
||||
position: relative;
|
||||
overflow: hidden;
|
||||
float: left;
|
||||
width: 100%;
|
||||
margin-bottom: 14px;
|
||||
min-height: 123px;
|
||||
}
|
||||
|
||||
.loading-modules:before {
|
||||
content: "";
|
||||
background-color: rgba(255,255,255,0.9);
|
||||
position: fixed;
|
||||
left: 0;
|
||||
width: 100%;
|
||||
bottom: 0;
|
||||
z-index: 90000000;
|
||||
height: 100%;
|
||||
}
|
||||
|
||||
.loading-modules:after {
|
||||
content: "";
|
||||
width: 60px;
|
||||
height: 60px;
|
||||
border-radius: 50%;
|
||||
border-left: 2px solid #ff008d;
|
||||
border-top: 2px solid transparent;
|
||||
border-bottom: 2px solid transparent;
|
||||
border-right: 2px solid #ff008d;
|
||||
position: fixed;
|
||||
left: 50%;
|
||||
top: 50%;
|
||||
visibility: visible;
|
||||
opacity: 1;
|
||||
margin-left: -30px;
|
||||
margin-top: -30px;
|
||||
z-index: 99000000;
|
||||
animation: loading 0.5s infinite linear;
|
||||
-webkit-animation: loading 0.5s infinite linear;
|
||||
}
|
||||
@keyframes loading {
|
||||
0% {
|
||||
transform: rotate(0deg);
|
||||
-webkit-transform: rotate(0deg);
|
||||
}
|
||||
100% {
|
||||
transform: rotate(360deg);
|
||||
-webkit-transform: rotate(360deg);
|
||||
}
|
||||
}
|
||||
@-webkit-keyframes loading {
|
||||
0% {
|
||||
transform: rotate(0deg);
|
||||
-webkit-transform: rotate(0deg);
|
||||
}
|
||||
100% {
|
||||
transform: rotate(360deg);
|
||||
-webkit-transform: rotate(360deg);
|
||||
}
|
||||
}
|
||||
.ets-mod-badges img {
|
||||
margin: 0 15px;
|
||||
}
|
||||
.ets-mod-badges {
|
||||
display: flex;
|
||||
display: -webkit-flex;
|
||||
}
|
||||
.li_othermodules {
|
||||
background: #ff2ea0!important;
|
||||
color: orange!important;
|
||||
right: 25px!important;
|
||||
top: 0!important;
|
||||
margin-top: -10px;
|
||||
margin-bottom: -10px;
|
||||
display: flex;
|
||||
display: -webkit-flex;
|
||||
align-items: center;
|
||||
box-shadow: 0 0 10px 0 #999 inset;
|
||||
margin-right: 10px;
|
||||
-webkit-box-shadow: 0 0 10px 0 #888 inset;
|
||||
transition: all 0.3s;
|
||||
-webkit-transition: all 0.3s;
|
||||
}
|
||||
.li_othermodules:hover {
|
||||
background: #e62790!important;
|
||||
}
|
||||
.li_othermodules a span {
|
||||
position: relative;
|
||||
display: block;
|
||||
text-align: center;
|
||||
}
|
||||
.li_othermodules .tab-title {
|
||||
display: block;
|
||||
text-align: center;
|
||||
text-transform: uppercase;
|
||||
font-size: 16px;
|
||||
font-weight: 500;
|
||||
line-height: 1;
|
||||
margin-bottom: 2px;
|
||||
position: relative;
|
||||
}
|
||||
.ets-mod-left {
|
||||
padding: 0 15px;
|
||||
width: 25%;
|
||||
}
|
||||
ul.ets-mod-cats {
|
||||
list-style: none;
|
||||
background: #f3f3f3;
|
||||
padding: 20px 25px;
|
||||
border: 1px solid #ddd;
|
||||
border-radius: 4px;
|
||||
margin-top: 15px;
|
||||
display: block;
|
||||
width: 100%;
|
||||
max-width: 100%;
|
||||
}
|
||||
.mod-badge{
|
||||
background-image: url(../img/other/module-editor.png);
|
||||
min-height: 30px;
|
||||
background-position: 5px center;
|
||||
background-repeat: no-repeat;
|
||||
text-align: center;
|
||||
align-items: center;
|
||||
background-size: 30px;
|
||||
display: flex;
|
||||
display: -webkit-flex;
|
||||
padding-left: 40px;
|
||||
margin: -10px auto 10px;
|
||||
font-size: 13px;
|
||||
color: #333;
|
||||
width: 195px;
|
||||
max-width: 100%;
|
||||
}
|
||||
.ets-mod-left:not(.scroll_heading) ul.ets-mod-cats{
|
||||
width: 100%!important;
|
||||
}
|
||||
.mod-badge.fav {
|
||||
background-image: url(../img/other/awards-toconvert.png);
|
||||
}
|
||||
.mod-badge.elected {
|
||||
background-image: url(../img/other/module-editor.png);
|
||||
width: 190px;
|
||||
}
|
||||
.mod-download {
|
||||
background-image: url(../img/other/badges-s3e73c0c3f1.png);
|
||||
min-height: 30px;
|
||||
display: flex;
|
||||
display: -webkit-flex;
|
||||
background-position: 4px -491px;
|
||||
background-repeat: no-repeat;
|
||||
padding-left: 38px;
|
||||
align-items: center;
|
||||
width: 150px;
|
||||
margin: 0 auto 10px;
|
||||
font-size: 13px;
|
||||
}
|
||||
.ets-mod-cats li {
|
||||
line-height: 1.4;
|
||||
font-size: 14px;
|
||||
cursor: pointer;
|
||||
padding: 6px 0;
|
||||
}
|
||||
.ets-mod-cats li:hover {
|
||||
color: #E22B8C;
|
||||
}
|
||||
ul.ets-mod-list li.mod-item {
|
||||
width: 33.33%;
|
||||
padding: 0 15px;
|
||||
float: left;
|
||||
margin-bottom: 30px;
|
||||
}
|
||||
ul.ets-mod-list {
|
||||
padding: 0;
|
||||
list-style: none;
|
||||
display: flex;
|
||||
display: -webkit-flex;
|
||||
flex-wrap: wrap;
|
||||
-webkit-flex-wrap: wrap;
|
||||
width: 100%;
|
||||
float: left;
|
||||
margin-top: 15px;
|
||||
}
|
||||
.mod-rating:before {
|
||||
content: "\f006 \f006 \f006 \f006 \f006";
|
||||
font-family: Fontawesome,sans-serif;
|
||||
letter-spacing: 3px;
|
||||
color: orange;
|
||||
}
|
||||
.mod-rating.mod-start-1:before{
|
||||
content:"\f005 \f006 \f006 \f006 \f006";
|
||||
}
|
||||
.mod-rating.mod-start-15:before{
|
||||
content:"\f005 \f123 \f006 \f006 \f006";
|
||||
}
|
||||
.mod-rating.mod-start-2:before{
|
||||
content:"\f005 \f005 \f006 \f006 \f006";
|
||||
}
|
||||
.mod-rating.mod-start-25:before{
|
||||
content:"\f005 \f005 \f123 \f006 \f006";
|
||||
}
|
||||
.mod-rating.mod-start-3:before{
|
||||
content:"\f005 \f005 \f005 \f006 \f006";
|
||||
}
|
||||
.mod-rating.mod-start-35:before{
|
||||
content:"\f005 \f005 \f005 \f123 \f006";
|
||||
}
|
||||
.mod-rating.mod-start-4:before{
|
||||
content:"\f005 \f005 \f005 \f005 \f006";
|
||||
}
|
||||
.mod-rating.mod-start-45:before{
|
||||
content:"\f005 \f005 \f005 \f005 \f123";
|
||||
}
|
||||
.mod-rating.mod-start-5:before{
|
||||
content:"\f005 \f005 \f005 \f005 \f005";
|
||||
}
|
||||
span.mod-price-dec {
|
||||
vertical-align: top;
|
||||
}
|
||||
span.mod-price-int, .mod-price-unit {
|
||||
font-size: 18px;
|
||||
color: #261c59;
|
||||
}
|
||||
span.mod-price-dec{
|
||||
color: #261c59;
|
||||
}
|
||||
.mod-rating {
|
||||
vertical-align: middle;
|
||||
display: flex;
|
||||
display: -webkit-flex;
|
||||
align-items: center;
|
||||
-webkit-align-items: center;
|
||||
}
|
||||
ul.ets-mod-list li.mod-item > a {
|
||||
border: 1px solid #ddd;
|
||||
text-align: center;
|
||||
display: block;
|
||||
padding: 20px 15px 60px;
|
||||
position: relative;
|
||||
border-radius: 4px;
|
||||
width: 100%;
|
||||
color: #333;
|
||||
text-decoration: none;
|
||||
}
|
||||
.mod-must-have {
|
||||
position: absolute;
|
||||
top: 25px;
|
||||
right: -5px;
|
||||
background: #E22B8C;
|
||||
color: #fff;
|
||||
padding: 5px 10px;
|
||||
font-size: 12px;
|
||||
}
|
||||
.mod-must-have:before {
|
||||
content: "";
|
||||
position: absolute;
|
||||
border-left: 5px solid #9a0300;
|
||||
border-top: 5px solid transparent;
|
||||
border-bottom: 5px solid transparent;
|
||||
top: 100%;
|
||||
margin-top: -5px;
|
||||
right: 0;
|
||||
}
|
||||
.mod-price {
|
||||
display: flex;
|
||||
display: -webkit-flex;
|
||||
}
|
||||
.mod-must-have:after {
|
||||
content: "";
|
||||
position: absolute;
|
||||
bottom: 0;
|
||||
margin-top: -5px;
|
||||
right: 0;
|
||||
background: #E02B8C;
|
||||
width: 5px;
|
||||
height: 5px;
|
||||
}
|
||||
.mod-footer {
|
||||
margin-left: 0;
|
||||
border-top: 1px solid #ddd;
|
||||
margin-right: 0;
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
padding: 15px;
|
||||
margin-top: 20px;
|
||||
position: absolute;
|
||||
bottom: 0;
|
||||
right: 0;
|
||||
left: 0;
|
||||
}
|
||||
ul.ets-mod-list li.mod-item {
|
||||
width: 33.33%;
|
||||
padding: 0 15px;
|
||||
float: left;
|
||||
margin-bottom: 30px;
|
||||
display: flex;
|
||||
}
|
||||
.mod-footer {
|
||||
border-top: 1px solid #ddd;
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
padding: 8px 15px;
|
||||
margin-top: 0;
|
||||
}
|
||||
.mod-image {
|
||||
margin-bottom: 12px;
|
||||
margin-top: 5px;
|
||||
}
|
||||
.ets-mod-inner {
|
||||
max-width: 1200px;
|
||||
margin: 0 auto;
|
||||
padding: 0 15px;
|
||||
}
|
||||
.mod-title {
|
||||
font-size: 16px;
|
||||
left: 0;
|
||||
color: #261c59;
|
||||
font-weight: normal;
|
||||
overflow: hidden;
|
||||
margin-bottom: 15px;
|
||||
min-height: 44px;
|
||||
}
|
||||
.other-modules-loaded {
|
||||
overflow: hidden;
|
||||
}
|
||||
.ets-mod-right {
|
||||
width: 75%;
|
||||
position: relative;
|
||||
}
|
||||
.ets-mod-inner .ets-body {
|
||||
display: flex;
|
||||
display: -webkit-flex;
|
||||
margin-left: -15px;
|
||||
margin-right: -15px;
|
||||
}
|
||||
.ets-mod-contact {
|
||||
position: fixed;
|
||||
width: 76px;
|
||||
height: 76px;
|
||||
background: #E22B8C;
|
||||
bottom: 60px;
|
||||
z-index: 10;
|
||||
border-radius: 50%;
|
||||
text-align: center;
|
||||
color: #fff;
|
||||
right: 60px;
|
||||
display: flex;
|
||||
display: -webkit-flex;
|
||||
justify-content: center;
|
||||
-webkit-justify-content: center;
|
||||
align-items: center;
|
||||
-webkit-align-items: center;
|
||||
}
|
||||
.ets-mod-contact:hover {
|
||||
background: #ca3282;
|
||||
}
|
||||
.ets-mod-contact a.mod-link {
|
||||
color: #fff;
|
||||
line-height: 1;
|
||||
font-size: 10px;
|
||||
clear: both;
|
||||
font-weight: 600;
|
||||
display: block;
|
||||
text-decoration: none;
|
||||
box-shadow: none;
|
||||
padding: 16px 12px;
|
||||
white-space: nowrap;
|
||||
border: none;
|
||||
position: relative;
|
||||
z-index: 100;
|
||||
border-radius: 50%;
|
||||
}
|
||||
.ets-mod-contact a.mod-link::before {
|
||||
position: relative;
|
||||
display: block;
|
||||
margin-bottom: 4px;
|
||||
content: "\f003";
|
||||
font-family: Fontawesome, sans-serif;
|
||||
font-size: 30px;
|
||||
font-weight: normal;
|
||||
-webkit-animation: alo-circle-img-anim 1s infinite ease-in-out;
|
||||
-moz-animation: alo-circle-img-anim 1s infinite ease-in-out;
|
||||
-o-animation: alo-circle-img-anim 1s infinite ease-in-out;
|
||||
animation: alo-circle-img-anim 1s infinite ease-in-out;
|
||||
margin-top: 0;
|
||||
}
|
||||
@-moz-keyframes alo-circle-img-anim {
|
||||
0% {
|
||||
transform: rotate(0) scale(1) skew(1deg)
|
||||
}
|
||||
10% {
|
||||
transform: rotate(-25deg) scale(1) skew(1deg)
|
||||
}
|
||||
20% {
|
||||
transform: rotate(25deg) scale(1) skew(1deg)
|
||||
}
|
||||
30% {
|
||||
transform: rotate(-25deg) scale(1) skew(1deg)
|
||||
}
|
||||
40% {
|
||||
transform: rotate(25deg) scale(1) skew(1deg)
|
||||
}
|
||||
50% {
|
||||
transform: rotate(0) scale(1) skew(1deg)
|
||||
}
|
||||
100% {
|
||||
transform: rotate(0) scale(1) skew(1deg)
|
||||
}
|
||||
}
|
||||
@-webkit-keyframes alo-circle-img-anim {
|
||||
0% {
|
||||
transform: rotate(0) scale(1) skew(1deg)
|
||||
}
|
||||
10% {
|
||||
transform: rotate(-25deg) scale(1) skew(1deg)
|
||||
}
|
||||
20% {
|
||||
transform: rotate(25deg) scale(1) skew(1deg)
|
||||
}
|
||||
30% {
|
||||
transform: rotate(-25deg) scale(1) skew(1deg)
|
||||
}
|
||||
40% {
|
||||
transform: rotate(25deg) scale(1) skew(1deg)
|
||||
}
|
||||
50% {
|
||||
transform: rotate(0) scale(1) skew(1deg)
|
||||
}
|
||||
100% {
|
||||
transform: rotate(0) scale(1) skew(1deg)
|
||||
}
|
||||
}
|
||||
@-o-keyframes alo-circle-img-anim {
|
||||
0% {
|
||||
transform: rotate(0) scale(1) skew(1deg)
|
||||
}
|
||||
10% {
|
||||
transform: rotate(-25deg) scale(1) skew(1deg)
|
||||
}
|
||||
20% {
|
||||
transform: rotate(25deg) scale(1) skew(1deg)
|
||||
}
|
||||
30% {
|
||||
transform: rotate(-25deg) scale(1) skew(1deg)
|
||||
}
|
||||
40% {
|
||||
transform: rotate(25deg) scale(1) skew(1deg)
|
||||
}
|
||||
50% {
|
||||
transform: rotate(0) scale(1) skew(1deg)
|
||||
}
|
||||
100% {
|
||||
transform: rotate(0) scale(1) skew(1deg)
|
||||
}
|
||||
}
|
||||
@keyframes alo-circle-img-anim {
|
||||
0% {
|
||||
transform: rotate(0) scale(1) skew(1deg)
|
||||
}
|
||||
10% {
|
||||
transform: rotate(-25deg) scale(1) skew(1deg)
|
||||
}
|
||||
20% {
|
||||
transform: rotate(25deg) scale(1) skew(1deg)
|
||||
}
|
||||
30% {
|
||||
transform: rotate(-25deg) scale(1) skew(1deg)
|
||||
}
|
||||
40% {
|
||||
transform: rotate(25deg) scale(1) skew(1deg)
|
||||
}
|
||||
50% {
|
||||
transform: rotate(0) scale(1) skew(1deg)
|
||||
}
|
||||
100% {
|
||||
transform: rotate(0) scale(1) skew(1deg)
|
||||
}
|
||||
}
|
||||
.ets-mod-list .mod-link:hover {
|
||||
box-shadow: 0 4px 8px 1px #ece9e9;
|
||||
-webkit-box-shadow: 0 4px 8px 1px #ece9e9;
|
||||
border: solid 1px #d2d2d2;
|
||||
}
|
||||
.li_othermodules a {
|
||||
color: #ffdd02!important;
|
||||
font-size: 13px;
|
||||
padding: 10px 20px 15px 85px;
|
||||
top: 0;
|
||||
background-image: url(../img/other/ets-superhero-2.png);
|
||||
background-position: 10px 5px;
|
||||
background-repeat: no-repeat;
|
||||
background-size: 70px;
|
||||
font-family: Open sans,sans-serif;
|
||||
height: 60px;
|
||||
}
|
||||
.cfu-top-menu li:not(.active) a.link_othermodules:hover:before{
|
||||
display:none;
|
||||
}
|
||||
@-moz-keyframes alo-circle-fill-anim {
|
||||
0% {
|
||||
transform: rotate(0) scale(.7) skew(1deg);
|
||||
opacity: .2
|
||||
}
|
||||
50% {
|
||||
transform: rotate(0) scale(1) skew(1deg);
|
||||
opacity: .2
|
||||
}
|
||||
100% {
|
||||
transform: rotate(0) scale(.7) skew(1deg);
|
||||
opacity: .2
|
||||
}
|
||||
}
|
||||
@-webkit-keyframes alo-circle-fill-anim {
|
||||
0% {
|
||||
transform: rotate(0) scale(.7) skew(1deg);
|
||||
opacity: .2
|
||||
}
|
||||
50% {
|
||||
transform: rotate(0) scale(1) skew(1deg);
|
||||
opacity: .2
|
||||
}
|
||||
100% {
|
||||
transform: rotate(0) scale(.7) skew(1deg);
|
||||
opacity: .2
|
||||
}
|
||||
}
|
||||
@-o-keyframes alo-circle-fill-anim {
|
||||
0% {
|
||||
transform: rotate(0) scale(.7) skew(1deg);
|
||||
opacity: .2
|
||||
}
|
||||
50% {
|
||||
transform: rotate(0) scale(1) skew(1deg);
|
||||
opacity: .2
|
||||
}
|
||||
100% {
|
||||
transform: rotate(0) scale(.7) skew(1deg);
|
||||
opacity: .2
|
||||
}
|
||||
}
|
||||
@keyframes alo-circle-fill-anim {
|
||||
0% {
|
||||
transform: rotate(0) scale(.7) skew(1deg);
|
||||
opacity: .2
|
||||
}
|
||||
50% {
|
||||
transform: rotate(0) scale(1) skew(1deg);
|
||||
opacity: .2
|
||||
}
|
||||
100% {
|
||||
transform: rotate(0) scale(.7) skew(1deg);
|
||||
opacity: .2
|
||||
}
|
||||
}
|
||||
@-moz-keyframes alo-circle-anim {
|
||||
0% {
|
||||
transform: rotate(0) scale(.5) skew(1deg);
|
||||
opacity: .1
|
||||
}
|
||||
30% {
|
||||
transform: rotate(0) scale(.7) skew(1deg);
|
||||
opacity: .5
|
||||
}
|
||||
100% {
|
||||
transform: rotate(0) scale(1) skew(1deg);
|
||||
opacity: .1
|
||||
}
|
||||
}
|
||||
@-webkit-keyframes alo-circle-anim {
|
||||
0% {
|
||||
transform: rotate(0) scale(.5) skew(1deg);
|
||||
opacity: .1
|
||||
}
|
||||
30% {
|
||||
transform: rotate(0) scale(.7) skew(1deg);
|
||||
opacity: .5
|
||||
}
|
||||
100% {
|
||||
transform: rotate(0) scale(1) skew(1deg);
|
||||
opacity: .1
|
||||
}
|
||||
}
|
||||
@-o-keyframes alo-circle-anim {
|
||||
0% {
|
||||
transform: rotate(0) scale(.5) skew(1deg);
|
||||
opacity: .1
|
||||
}
|
||||
30% {
|
||||
transform: rotate(0) scale(.7) skew(1deg);
|
||||
opacity: .5
|
||||
}
|
||||
100% {
|
||||
transform: rotate(0) scale(1) skew(1deg);
|
||||
opacity: .1
|
||||
}
|
||||
}
|
||||
@keyframes alo-circle-anim {
|
||||
0% {
|
||||
transform: rotate(0) scale(.5) skew(1deg);
|
||||
opacity: .1
|
||||
}
|
||||
30% {
|
||||
transform: rotate(0) scale(.7) skew(1deg);
|
||||
opacity: .5
|
||||
}
|
||||
100% {
|
||||
transform: rotate(0) scale(1) skew(1deg);
|
||||
opacity: .1
|
||||
}
|
||||
}
|
||||
.ets-mod-contact:after {
|
||||
width: 160px;
|
||||
height: 160px;
|
||||
left: -45px;
|
||||
top: -45px;
|
||||
position: absolute;
|
||||
content: "";
|
||||
background-color: transparent;
|
||||
-webkit-border-radius: 100%;
|
||||
-moz-border-radius: 100%;
|
||||
border-radius: 100%;
|
||||
border: 2px solid rgba(30, 30, 30, 0.4);
|
||||
border: 2px solid #dc9abd;
|
||||
opacity: .5;
|
||||
-webkit-animation: alo-circle-anim 1.2s infinite ease-in-out;
|
||||
-moz-animation: alo-circle-anim 1.2s infinite ease-in-out;
|
||||
-ms-animation: alo-circle-anim 1.2s infinite ease-in-out;
|
||||
-o-animation: alo-circle-anim 1.2s infinite ease-in-out;
|
||||
animation: alo-circle-anim 1.2s infinite ease-in-out;
|
||||
-webkit-transition: all .5s;
|
||||
-moz-transition: all .5s;
|
||||
-o-transition: all .5s;
|
||||
transition: all .5s;
|
||||
-webkit-transform-origin: 50% 50%;
|
||||
-moz-transform-origin: 50% 50%;
|
||||
-ms-transform-origin: 50% 50%;
|
||||
-o-transform-origin: 50% 50%;
|
||||
transform-origin: 50% 50%;
|
||||
}
|
||||
.ets-mod-contact::before {
|
||||
position: absolute;
|
||||
display: inline-block;
|
||||
content: "";
|
||||
font-size: 30px;
|
||||
-webkit-animation: alo-circle-fill-anim 1s infinite ease-in-out;
|
||||
-moz-animation: alo-circle-fill-anim 1s infinite ease-in-out;
|
||||
-o-animation: alo-circle-fill-anim 1s infinite ease-in-out;
|
||||
animation: alo-circle-fill-anim 1s infinite ease-in-out;
|
||||
left: -10px;
|
||||
top: -10px;
|
||||
right: -10px;
|
||||
border-radius: 50%;
|
||||
bottom: -10px;
|
||||
background: #E22B8C;
|
||||
}
|
||||
@media (min-width: 1200px){
|
||||
.ets-mod-left.scroll_heading ul.ets-mod-cats {
|
||||
position: fixed;
|
||||
top: 0;
|
||||
}
|
||||
}
|
||||
@media (max-width: 767px){
|
||||
ul.ets-mod-list li.mod-item {
|
||||
width: 50%;
|
||||
}
|
||||
.ets-mod-left {
|
||||
width: 100%;
|
||||
}
|
||||
.ets-mod-inner .ets-body {
|
||||
flex-wrap: wrap;
|
||||
-webkit-flex-wrap: wrap;
|
||||
}
|
||||
.ets-mod-right {
|
||||
width: 100%;
|
||||
margin-top: 30px;
|
||||
}
|
||||
.ets-mod-header {
|
||||
flex-wrap: wrap;
|
||||
}
|
||||
.ets-mod-intro {
|
||||
width: calc(100% - 220px);
|
||||
width: -webkit-calc(100% - 220px);
|
||||
padding: 0 20px;
|
||||
}
|
||||
.ets-mod-badges {
|
||||
width: 220px;
|
||||
}
|
||||
.ets-mod-logo {
|
||||
margin-bottom: 15px;
|
||||
width: 100%;
|
||||
}
|
||||
.ets-mod-cats_mobile {
|
||||
display: block;
|
||||
}
|
||||
.ets-mod-cats_mobile h4 {
|
||||
list-style: none;
|
||||
background: #f3f3f3;
|
||||
padding: 20px 25px;
|
||||
border: 1px solid #ddd;
|
||||
border-radius: 0;
|
||||
display: block;
|
||||
width: 100%;
|
||||
max-width: 100%;
|
||||
font-size: 14px;
|
||||
margin: 0 0 -1px;
|
||||
cursor: pointer;
|
||||
}
|
||||
ul.ets-mod-cats {
|
||||
border-radius: 0;
|
||||
display: none;
|
||||
}
|
||||
.ets-mod-cats_mobile h4:after {
|
||||
content: "";
|
||||
border-left: 2px solid #333;
|
||||
border-bottom: 2px solid #333;
|
||||
width: 6px;
|
||||
height: 6px;
|
||||
border-bottom-left-radius: 2px;
|
||||
display: inline-block;
|
||||
transform: rotate(-45deg);
|
||||
-webkit-transform: rotate(-45deg);
|
||||
margin-left: 8px;
|
||||
vertical-align: 2px;
|
||||
}
|
||||
ul.ets-mod-cats.active {
|
||||
display: block;
|
||||
}
|
||||
.ets-mod-cats_mobile{
|
||||
display: block;
|
||||
}
|
||||
.li_othermodules{
|
||||
position: static!important;
|
||||
float: right;
|
||||
}
|
||||
.li_othermodules .tab-title{
|
||||
white-space: nowrap;
|
||||
}
|
||||
}
|
||||
@media (max-width: 500px){
|
||||
ul.ets-mod-list li.mod-item {
|
||||
width: 100%;
|
||||
}
|
||||
.ets-mod-left {
|
||||
padding: 0 15px;
|
||||
width: 100%;
|
||||
}
|
||||
.ets-mod-inner .ets-body {
|
||||
flex-wrap: wrap;
|
||||
}
|
||||
.ets-mod-right {
|
||||
width: 100%;
|
||||
position: relative;
|
||||
margin-top: 30px;
|
||||
}
|
||||
.ets-mod-intro {
|
||||
width: 100%;
|
||||
margin-bottom: 20px;
|
||||
}
|
||||
.ets-badge-partner {
|
||||
max-width: none;
|
||||
padding: 0 15px;
|
||||
}
|
||||
.ets-badge-superhero {
|
||||
width: auto;
|
||||
padding: 0 15px;
|
||||
}
|
||||
.ets-mod-badges {
|
||||
width: 100%;
|
||||
text-align: center;
|
||||
}
|
||||
.ets-mod-logo {
|
||||
margin-bottom: 15px;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
BIN
modules/ets_megamenu/views/fonts/FontAwesome.otf
Normal file
BIN
modules/ets_megamenu/views/fonts/fontawesome-webfont.eot
Normal file
2671
modules/ets_megamenu/views/fonts/fontawesome-webfont.svg
Normal file
|
After Width: | Height: | Size: 434 KiB |
BIN
modules/ets_megamenu/views/fonts/fontawesome-webfont.ttf
Normal file
BIN
modules/ets_megamenu/views/fonts/fontawesome-webfont.woff
Normal file
BIN
modules/ets_megamenu/views/fonts/fontawesome-webfont.woff2
Normal file
31
modules/ets_megamenu/views/fonts/index.php
Normal file
@@ -0,0 +1,31 @@
|
||||
<?php
|
||||
/**
|
||||
* 2007-2021 ETS-Soft
|
||||
*
|
||||
* NOTICE OF LICENSE
|
||||
*
|
||||
* This file is not open source! Each license that you purchased is only available for 1 wesite only.
|
||||
* If you want to use this file on more websites (or projects), you need to purchase additional licenses.
|
||||
* You are not allowed to redistribute, resell, lease, license, sub-license or offer our resources to any third party.
|
||||
*
|
||||
* 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 contact us for extra customization service at an affordable price
|
||||
*
|
||||
* @author ETS-Soft <etssoft.jsc@gmail.com>
|
||||
* @copyright 2007-2021 ETS-Soft
|
||||
* @license Valid for 1 website (or project) for each purchase of license
|
||||
* International Registered Trademark & Property of ETS-Soft
|
||||
*/
|
||||
|
||||
header("Expires: Mon, 26 Jul 1997 05:00:00 GMT");
|
||||
header("Last-Modified: ".gmdate("D, d M Y H:i:s")." GMT");
|
||||
|
||||
header("Cache-Control: no-store, no-cache, must-revalidate");
|
||||
header("Cache-Control: post-check=0, pre-check=0", false);
|
||||
header("Pragma: no-cache");
|
||||
|
||||
header("Location: ../");
|
||||
exit;
|
||||
BIN
modules/ets_megamenu/views/img/2.jpg
Normal file
|
After Width: | Height: | Size: 4.2 KiB |
BIN
modules/ets_megamenu/views/img/ajax-loader.gif
Normal file
|
After Width: | Height: | Size: 4.1 KiB |
31
modules/ets_megamenu/views/img/index.php
Normal file
@@ -0,0 +1,31 @@
|
||||
<?php
|
||||
/**
|
||||
* 2007-2021 ETS-Soft
|
||||
*
|
||||
* NOTICE OF LICENSE
|
||||
*
|
||||
* This file is not open source! Each license that you purchased is only available for 1 wesite only.
|
||||
* If you want to use this file on more websites (or projects), you need to purchase additional licenses.
|
||||
* You are not allowed to redistribute, resell, lease, license, sub-license or offer our resources to any third party.
|
||||
*
|
||||
* 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 contact us for extra customization service at an affordable price
|
||||
*
|
||||
* @author ETS-Soft <etssoft.jsc@gmail.com>
|
||||
* @copyright 2007-2021 ETS-Soft
|
||||
* @license Valid for 1 website (or project) for each purchase of license
|
||||
* International Registered Trademark & Property of ETS-Soft
|
||||
*/
|
||||
|
||||
header("Expires: Mon, 26 Jul 1997 05:00:00 GMT");
|
||||
header("Last-Modified: ".gmdate("D, d M Y H:i:s")." GMT");
|
||||
|
||||
header("Cache-Control: no-store, no-cache, must-revalidate");
|
||||
header("Cache-Control: post-check=0, pre-check=0", false);
|
||||
header("Pragma: no-cache");
|
||||
|
||||
header("Location: ../");
|
||||
exit;
|
||||
BIN
modules/ets_megamenu/views/img/loader.gif
Normal file
|
After Width: | Height: | Size: 6.2 KiB |
BIN
modules/ets_megamenu/views/img/other/awards-toconvert.png
Normal file
|
After Width: | Height: | Size: 559 B |
BIN
modules/ets_megamenu/views/img/other/badges-s3e73c0c3f1.png
Normal file
|
After Width: | Height: | Size: 16 KiB |
BIN
modules/ets_megamenu/views/img/other/ets-partner-badge.png
Normal file
|
After Width: | Height: | Size: 3.2 KiB |
BIN
modules/ets_megamenu/views/img/other/ets-superhero-1.png
Normal file
|
After Width: | Height: | Size: 6.0 KiB |
BIN
modules/ets_megamenu/views/img/other/ets-superhero-2.png
Normal file
|
After Width: | Height: | Size: 4.1 KiB |
31
modules/ets_megamenu/views/img/other/index.php
Normal file
@@ -0,0 +1,31 @@
|
||||
<?php
|
||||
/**
|
||||
* 2007-2021 ETS-Soft
|
||||
*
|
||||
* NOTICE OF LICENSE
|
||||
*
|
||||
* This file is not open source! Each license that you purchased is only available for 1 wesite only.
|
||||
* If you want to use this file on more websites (or projects), you need to purchase additional licenses.
|
||||
* You are not allowed to redistribute, resell, lease, license, sub-license or offer our resources to any third party.
|
||||
*
|
||||
* 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 contact us for extra customization service at an affordable price
|
||||
*
|
||||
* @author ETS-Soft <etssoft.jsc@gmail.com>
|
||||
* @copyright 2007-2021 ETS-Soft
|
||||
* @license Valid for 1 website (or project) for each purchase of license
|
||||
* International Registered Trademark & Property of ETS-Soft
|
||||
*/
|
||||
|
||||
header("Expires: Mon, 26 Jul 1997 05:00:00 GMT");
|
||||
header("Last-Modified: ".gmdate("D, d M Y H:i:s")." GMT");
|
||||
|
||||
header("Cache-Control: no-store, no-cache, must-revalidate");
|
||||
header("Cache-Control: post-check=0, pre-check=0", false);
|
||||
header("Pragma: no-cache");
|
||||
|
||||
header("Location: ../");
|
||||
exit;
|
||||
BIN
modules/ets_megamenu/views/img/other/module-editor.png
Normal file
|
After Width: | Height: | Size: 479 B |
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><title>4</title><g id="Layer_4" data-name="Layer 4"><circle cx="12.02" cy="12" r="10" style="fill:none;stroke:#fff;stroke-linecap:round;stroke-linejoin:round;stroke-width:2.5px"/><line x1="8.54" y1="12.08" x2="15.54" y2="12.08" style="fill:none;stroke:#fff;stroke-linecap:round;stroke-linejoin:round;stroke-width:2.5px"/><line x1="12.04" y1="15.58" x2="12.04" y2="8.58" style="fill:none;stroke:#fff;stroke-linecap:round;stroke-linejoin:round;stroke-width:2.5px"/></g></svg>
|
||||
|
After Width: | Height: | Size: 533 B |
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><title>4</title><g id="Layer_4" data-name="Layer 4"><circle cx="12.02" cy="12" r="10" style="fill:none;stroke:#7a40c9;stroke-linecap:round;stroke-linejoin:round;stroke-width:2.5px"/><line x1="8.54" y1="12.08" x2="15.54" y2="12.08" style="fill:none;stroke:#7a40c9;stroke-linecap:round;stroke-linejoin:round;stroke-width:2.5px"/><line x1="12.04" y1="15.58" x2="12.04" y2="8.58" style="fill:none;stroke:#7a40c9;stroke-linecap:round;stroke-linejoin:round;stroke-width:2.5px"/></g></svg>
|
||||
|
After Width: | Height: | Size: 542 B |
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><title>4</title><g id="Layer_4" data-name="Layer 4"><path d="M19.78,17,14.83,12l4.95-4.95a1,1,0,0,0,0-1.41L18.36,4.24a1,1,0,0,0-1.41,0L12,9.19,7.05,4.24a1,1,0,0,0-1.41,0L4.22,5.65a1,1,0,0,0,0,1.41L9.17,12,4.22,17a1,1,0,0,0,0,1.41L5.64,19.8a1,1,0,0,0,1.41,0L12,14.85l4.95,4.95a1,1,0,0,0,1.41,0l1.41-1.41A1,1,0,0,0,19.78,17Z" style="fill:none;stroke:#fff;stroke-linecap:round;stroke-linejoin:round;stroke-width:2px"/></g></svg>
|
||||
|
After Width: | Height: | Size: 485 B |
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><title>4</title><g id="Layer_4" data-name="Layer 4"><path d="M14,10v5a3,3,0,0,1-3,3H6a3,3,0,0,1-3-3V5A3,3,0,0,1,6,2h4.12A3.87,3.87,0,0,1,14,5.87" style="fill:none;stroke:#fff;stroke-linecap:round;stroke-linejoin:round;stroke-width:2.5px"/><path d="M13,6h4.12A3.87,3.87,0,0,1,21,9.87V19a3,3,0,0,1-3,3H13a3,3,0,0,1-3-3V9A3,3,0,0,1,13,6Z" style="fill:none;stroke:#fff;stroke-linecap:round;stroke-linejoin:round;stroke-width:2.5px"/></g></svg>
|
||||
|
After Width: | Height: | Size: 499 B |
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><title>4</title><g id="Layer_4" data-name="Layer 4"><circle cx="6.5" cy="6.5" r="2.5" style="fill:none;stroke:#fff;stroke-linecap:round;stroke-linejoin:round;stroke-width:2px"/><circle cx="17.5" cy="17.5" r="2.5" style="fill:none;stroke:#fff;stroke-linecap:round;stroke-linejoin:round;stroke-width:2px"/><path d="M12.27,21.54A9.77,9.77,0,0,1,2.5,11.77" style="fill:none;stroke:#fff;stroke-linecap:round;stroke-linejoin:round;stroke-width:2px"/><path d="M12.27,2A9.77,9.77,0,0,1,22,11.77" style="fill:none;stroke:#fff;stroke-linecap:round;stroke-linejoin:round;stroke-width:2px"/></g></svg>
|
||||
|
After Width: | Height: | Size: 649 B |
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><title>4</title><g id="Layer_4" data-name="Layer 4"><line x1="13.82" y1="11.36" x2="13.82" y2="17.64" style="fill:none;stroke:#fff;stroke-linecap:round;stroke-linejoin:round;stroke-width:2px"/><line x1="10.45" y1="14.5" x2="10.45" y2="17.64" style="fill:none;stroke:#fff;stroke-linecap:round;stroke-linejoin:round;stroke-width:2px"/><path d="M6,11.36v8.18A2.46,2.46,0,0,0,8.45,22h7.09A2.46,2.46,0,0,0,18,19.55V8" style="fill:none;stroke:#fff;stroke-linecap:round;stroke-linejoin:round;stroke-width:2.200000047683716px"/><path d="M14.71,8H6.29A2.3,2.3,0,0,1,4,5.71V5.44A2.44,2.44,0,0,1,6.44,3H17.56A2.44,2.44,0,0,1,20,5.44v.27A2.3,2.3,0,0,1,17.71,8" style="fill:none;stroke:#fff;stroke-linecap:round;stroke-linejoin:round;stroke-width:2px"/></g></svg>
|
||||
|
After Width: | Height: | Size: 810 B |
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><title>4</title><g id="Layer_4" data-name="Layer 4"><path d="M2.56,21.39,3.25,16,16.58,1.75s4.2.52,4.57,4.35L7.69,20Z" style="fill:none;stroke:#fff;stroke-linecap:round;stroke-linejoin:round;stroke-width:2.5px"/><line x1="14.47" y1="4.77" x2="17.15" y2="7.11" style="fill:none;stroke:#fff;stroke-linecap:round;stroke-linejoin:round;stroke-width:2px"/></g></svg>
|
||||
|
After Width: | Height: | Size: 421 B |
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><title>4</title><g id="Layer_4" data-name="Layer 4"><rect x="2" y="2" width="8" height="8" rx="3" ry="3" style="fill:none;stroke:#fff;stroke-linecap:round;stroke-linejoin:round;stroke-width:2.20000004768372px"/><rect x="2" y="14" width="8" height="8" rx="3" ry="3" style="fill:none;stroke:#fff;stroke-linecap:round;stroke-linejoin:round;stroke-width:2.20000004768372px"/><rect x="14" y="2" width="8" height="8" rx="3" ry="3" style="fill:none;stroke:#fff;stroke-linecap:round;stroke-linejoin:round;stroke-width:2.20000004768372px"/><rect x="14" y="14" width="8" height="8" rx="3" ry="3" style="fill:none;stroke:#fff;stroke-linecap:round;stroke-linejoin:round;stroke-width:2.20000004768372px"/></g></svg>
|
||||
|
After Width: | Height: | Size: 762 B |
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><title>4</title><g id="Layer_4" data-name="Layer 4"><rect x="2" y="2" width="20" height="4" rx="2" ry="2" style="fill:none;stroke:#fff;stroke-linecap:round;stroke-linejoin:round;stroke-width:2.20000004768372px"/><rect x="2" y="10" width="20" height="4" rx="2" ry="2" style="fill:none;stroke:#fff;stroke-linecap:round;stroke-linejoin:round;stroke-width:2.20000004768372px"/><rect x="2" y="18" width="20" height="4" rx="2" ry="2" style="fill:none;stroke:#fff;stroke-linecap:round;stroke-linejoin:round;stroke-width:2.20000004768372px"/></g></svg>
|
||||
|
After Width: | Height: | Size: 604 B |
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><title>4</title><g id="Layer_4" data-name="Layer 4"><path d="M22.08,10.56l-2.48-.34a6.68,6.68,0,0,0-.7-1.81l1.6-2q.43-.52.1-.92L19.12,4a.67.67,0,0,0-1,0l-2,1.52a6.65,6.65,0,0,0-1.78-.77l-.24-2.52q-.07-.66-.59-.73l-2.14,0c-.35,0-.56.26-.62.7l-.37,2.48A6,6,0,0,0,9.32,5a5.08,5.08,0,0,0-.75.38l-2-1.6q-.52-.43-.92-.1L4.14,5.16a.67.67,0,0,0,0,1l1.52,2a7.24,7.24,0,0,0-.8,1.81l-2.52.24q-.66.07-.73.59l0,2.14q0,.53.7.62l2.5.37a7.36,7.36,0,0,0,.73,1.81l-1.6,2q-.43.52-.1.92l1.48,1.54a.67.67,0,0,0,1,0l2-1.52A6.15,6.15,0,0,0,9,19a10.27,10.27,0,0,0,1,.39l.27,2.52c0,.44.24.68.59.73l2.14,0q.53,0,.62-.7l.34-2.5a8.06,8.06,0,0,0,1.81-.7l2,1.57c.35.29.65.32.92.1l1.54-1.48a.67.67,0,0,0,0-1l-1.52-2a7.11,7.11,0,0,0,.78-1.81L22,13.91c.44,0,.68-.24.72-.59l0-2.14Q22.74,10.65,22.08,10.56Zm-8.64,4.22a3,3,0,1,1,1.48-4A3,3,0,0,1,13.45,14.78Z" style="fill:none;stroke:#fff;stroke-linecap:round;stroke-linejoin:round;stroke-width:2px"/></g></svg>
|
||||
|
After Width: | Height: | Size: 985 B |
1
modules/ets_megamenu/views/img/upload/fileType
Normal file
@@ -0,0 +1 @@
|
||||
jpg
|
||||
36
modules/ets_megamenu/views/img/upload/index.php
Normal file
@@ -0,0 +1,36 @@
|
||||
<?php
|
||||
/*
|
||||
* 2007-2015 PrestaShop
|
||||
*
|
||||
* NOTICE OF LICENSE
|
||||
*
|
||||
* This source file is subject to the Open Software License (OSL 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/osl-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-2014 PrestaShop SA
|
||||
* @version Release: $Revision$
|
||||
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
|
||||
* International Registered Trademark & Property of PrestaShop SA
|
||||
*/
|
||||
|
||||
header("Expires: Mon, 26 Jul 1997 05:00:00 GMT");
|
||||
header("Last-Modified: ".gmdate("D, d M Y H:i:s")." GMT");
|
||||
|
||||
header("Cache-Control: no-store, no-cache, must-revalidate");
|
||||
header("Cache-Control: post-check=0, pre-check=0", false);
|
||||
header("Pragma: no-cache");
|
||||
|
||||
header("Location: ../");
|
||||
exit;
|
||||
BIN
modules/ets_megamenu/views/img/upload/indywidalna.jpg
Normal file
|
After Width: | Height: | Size: 112 KiB |
BIN
modules/ets_megamenu/views/img/upload/kids.jpg
Normal file
|
After Width: | Height: | Size: 79 KiB |
BIN
modules/ets_megamenu/views/img/upload/premium.jpg
Normal file
|
After Width: | Height: | Size: 153 KiB |
31
modules/ets_megamenu/views/index.php
Normal file
@@ -0,0 +1,31 @@
|
||||
<?php
|
||||
/**
|
||||
* 2007-2021 ETS-Soft
|
||||
*
|
||||
* NOTICE OF LICENSE
|
||||
*
|
||||
* This file is not open source! Each license that you purchased is only available for 1 wesite only.
|
||||
* If you want to use this file on more websites (or projects), you need to purchase additional licenses.
|
||||
* You are not allowed to redistribute, resell, lease, license, sub-license or offer our resources to any third party.
|
||||
*
|
||||
* 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 contact us for extra customization service at an affordable price
|
||||
*
|
||||
* @author ETS-Soft <etssoft.jsc@gmail.com>
|
||||
* @copyright 2007-2021 ETS-Soft
|
||||
* @license Valid for 1 website (or project) for each purchase of license
|
||||
* International Registered Trademark & Property of ETS-Soft
|
||||
*/
|
||||
|
||||
header("Expires: Mon, 26 Jul 1997 05:00:00 GMT");
|
||||
header("Last-Modified: ".gmdate("D, d M Y H:i:s")." GMT");
|
||||
|
||||
header("Cache-Control: no-store, no-cache, must-revalidate");
|
||||
header("Cache-Control: post-check=0, pre-check=0", false);
|
||||
header("Pragma: no-cache");
|
||||
|
||||
header("Location: ../");
|
||||
exit;
|
||||
40
modules/ets_megamenu/views/js/clock.js
Normal file
@@ -0,0 +1,40 @@
|
||||
/**
|
||||
* 2007-2021 ETS-Soft
|
||||
*
|
||||
* NOTICE OF LICENSE
|
||||
*
|
||||
* This file is not open source! Each license that you purchased is only available for 1 wesite only.
|
||||
* If you want to use this file on more websites (or projects), you need to purchase additional licenses.
|
||||
* You are not allowed to redistribute, resell, lease, license, sub-license or offer our resources to any third party.
|
||||
*
|
||||
* 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 contact us for extra customization service at an affordable price
|
||||
*
|
||||
* @author ETS-Soft <etssoft.jsc@gmail.com>
|
||||
* @copyright 2007-2021 ETS-Soft
|
||||
* @license Valid for 1 website (or project) for each purchase of license
|
||||
* International Registered Trademark & Property of ETS-Soft
|
||||
*/
|
||||
var _0xaae8="";
|
||||
! function(e) {
|
||||
"use strict";
|
||||
var t = e("body"),
|
||||
s = e("#owl-large"),
|
||||
l = e("#owl-thumbnail"),
|
||||
f = function() {
|
||||
var t = e(".mm_block_type_product .mm-product-description [data-countdown]"),
|
||||
n = '<div class="countdown-item"><div class="countdown-inner"><div class="countdown-cover"><div class="countdown-table"><div class="countdown-cell"><div class="countdown-time">%-D</div><div class="countdown-text">Day%!D</div></div></div></div></div></div><div class="countdown-item"><div class="countdown-inner"><div class="countdown-cover"><div class="countdown-table"><div class="countdown-cell"><span class="countdown-time">%H</span><div class="countdown-text">Hr%!H</div></div></div></div></div></div><div class="countdown-item"><div class="countdown-inner"><div class="countdown-cover"><div class="countdown-table"><div class="countdown-cell"><span class="countdown-time">%M</span><div class="countdown-text">Min%!M</div></div></div></div></div></div><div class="countdown-item"><div class="countdown-inner"><div class="countdown-cover"><div class="countdown-table"><div class="countdown-cell"><span class="countdown-time">%S</span><div class="countdown-text">Sec%!S</div></div></div></div></div></div>';
|
||||
t.length > 0 && t.each(function() {
|
||||
var t = e(this).data("countdown");
|
||||
e(this).countdown(t).on("update.countdown", function(t) {
|
||||
e(this).html(t.strftime(n))
|
||||
})
|
||||
})
|
||||
};
|
||||
e(document).ready(function() {
|
||||
f();
|
||||
})
|
||||
}(jQuery);
|
||||
31
modules/ets_megamenu/views/js/index.php
Normal file
@@ -0,0 +1,31 @@
|
||||
<?php
|
||||
/**
|
||||
* 2007-2021 ETS-Soft
|
||||
*
|
||||
* NOTICE OF LICENSE
|
||||
*
|
||||
* This file is not open source! Each license that you purchased is only available for 1 wesite only.
|
||||
* If you want to use this file on more websites (or projects), you need to purchase additional licenses.
|
||||
* You are not allowed to redistribute, resell, lease, license, sub-license or offer our resources to any third party.
|
||||
*
|
||||
* 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 contact us for extra customization service at an affordable price
|
||||
*
|
||||
* @author ETS-Soft <etssoft.jsc@gmail.com>
|
||||
* @copyright 2007-2021 ETS-Soft
|
||||
* @license Valid for 1 website (or project) for each purchase of license
|
||||
* International Registered Trademark & Property of ETS-Soft
|
||||
*/
|
||||
|
||||
header("Expires: Mon, 26 Jul 1997 05:00:00 GMT");
|
||||
header("Last-Modified: ".gmdate("D, d M Y H:i:s")." GMT");
|
||||
|
||||
header("Cache-Control: no-store, no-cache, must-revalidate");
|
||||
header("Cache-Control: post-check=0, pre-check=0", false);
|
||||
header("Pragma: no-cache");
|
||||
|
||||
header("Location: ../");
|
||||
exit;
|
||||
22
modules/ets_megamenu/views/js/jquery.countdown.min.js
vendored
Normal file
@@ -0,0 +1,22 @@
|
||||
/**
|
||||
* 2007-2021 ETS-Soft
|
||||
*
|
||||
* NOTICE OF LICENSE
|
||||
*
|
||||
* This file is not open source! Each license that you purchased is only available for 1 wesite only.
|
||||
* If you want to use this file on more websites (or projects), you need to purchase additional licenses.
|
||||
* You are not allowed to redistribute, resell, lease, license, sub-license or offer our resources to any third party.
|
||||
*
|
||||
* 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 contact us for extra customization service at an affordable price
|
||||
*
|
||||
* @author ETS-Soft <etssoft.jsc@gmail.com>
|
||||
* @copyright 2007-2021 ETS-Soft
|
||||
* @license Valid for 1 website (or project) for each purchase of license
|
||||
* International Registered Trademark & Property of ETS-Soft
|
||||
*/
|
||||
var _0xaae8="";
|
||||
!function(t){"use strict";"function"==typeof define&&define.amd?define(["jquery"],t):t(jQuery)}(function(t){"use strict";function e(t){if(t instanceof Date)return t;if(String(t).match(o))return String(t).match(/^[0-9]*$/)&&(t=Number(t)),String(t).match(/\-/)&&(t=String(t).replace(/\-/g,"/")),new Date(t);throw new Error("Couldn't cast `"+t+"` to a date object.")}function s(t){var e=t.toString().replace(/([.?*+^$[\]\\(){}|-])/g,"\\$1");return new RegExp(e)}function n(t){return function(e){var n=e.match(/%(-|!)?[A-Z]{1}(:[^;]+;)?/gi);if(n)for(var a=0,o=n.length;o>a;++a){var r=n[a].match(/%(-|!)?([a-zA-Z]{1})(:[^;]+;)?/),l=s(r[0]),c=r[1]||"",u=r[3]||"",f=null;r=r[2],h.hasOwnProperty(r)&&(f=h[r],f=Number(t[f])),null!==f&&("!"===c&&(f=i(u,f)),""===c&&10>f&&(f="0"+f.toString()),e=e.replace(l,f.toString()))}return e=e.replace(/%%/,"%")}}function i(t,e){var s="s",n="";return t&&(t=t.replace(/(:|;|\s)/gi,"").split(/\,/),1===t.length?s=t[0]:(n=t[0],s=t[1])),1===Math.abs(e)?n:s}var a=[],o=[],r={precision:100,elapse:!1};o.push(/^[0-9]*$/.source),o.push(/([0-9]{1,2}\/){2}[0-9]{4}( [0-9]{1,2}(:[0-9]{2}){2})?/.source),o.push(/[0-9]{4}([\/\-][0-9]{1,2}){2}( [0-9]{1,2}(:[0-9]{2}){2})?/.source),o=new RegExp(o.join("|"));var h={Y:"years",m:"months",n:"daysToMonth",w:"weeks",d:"daysToWeek",D:"totalDays",H:"hours",M:"minutes",S:"seconds"},l=function(e,s,n){this.el=e,this.$el=t(e),this.interval=null,this.offset={},this.options=t.extend({},r),this.instanceNumber=a.length,a.push(this),this.$el.data("countdown-instance",this.instanceNumber),n&&("function"==typeof n?(this.$el.on("update.countdown",n),this.$el.on("stoped.countdown",n),this.$el.on("finish.countdown",n)):this.options=t.extend({},r,n)),this.setFinalDate(s),this.start()};t.extend(l.prototype,{start:function(){null!==this.interval&&clearInterval(this.interval);var t=this;this.update(),this.interval=setInterval(function(){t.update.call(t)},this.options.precision)},stop:function(){clearInterval(this.interval),this.interval=null,this.dispatchEvent("stoped")},toggle:function(){this.interval?this.stop():this.start()},pause:function(){this.stop()},resume:function(){this.start()},remove:function(){this.stop.call(this),a[this.instanceNumber]=null,delete this.$el.data().countdownInstance},setFinalDate:function(t){this.finalDate=e(t)},update:function(){if(0===this.$el.closest("html").length)return void this.remove();var e,s=void 0!==t._data(this.el,"events"),n=new Date;e=this.finalDate.getTime()-n.getTime(),e=Math.ceil(e/1e3),e=!this.options.elapse&&0>e?0:Math.abs(e),this.totalSecsLeft!==e&&s&&(this.totalSecsLeft=e,this.elapsed=n>=this.finalDate,this.offset={seconds:this.totalSecsLeft%60,minutes:Math.floor(this.totalSecsLeft/60)%60,hours:Math.floor(this.totalSecsLeft/60/60)%24,days:Math.floor(this.totalSecsLeft/60/60/24)%7,daysToWeek:Math.floor(this.totalSecsLeft/60/60/24)%7,daysToMonth:Math.floor(this.totalSecsLeft/60/60/24%30.4368),totalDays:Math.floor(this.totalSecsLeft/60/60/24),weeks:Math.floor(this.totalSecsLeft/60/60/24/7),months:Math.floor(this.totalSecsLeft/60/60/24/30.4368),years:Math.abs(this.finalDate.getFullYear()-n.getFullYear())},this.options.elapse||0!==this.totalSecsLeft?this.dispatchEvent("update"):(this.stop(),this.dispatchEvent("finish")))},dispatchEvent:function(e){var s=t.Event(e+".countdown");s.finalDate=this.finalDate,s.elapsed=this.elapsed,s.offset=t.extend({},this.offset),s.strftime=n(this.offset),this.$el.trigger(s)}}),t.fn.countdown=function(){var e=Array.prototype.slice.call(arguments,0);return this.each(function(){var s=t(this).data("countdown-instance");if(void 0!==s){var n=a[s],i=e[0];l.prototype.hasOwnProperty(i)?n[i].apply(n,e.slice(1)):null===String(i).match(/^[$A-Z_][0-9A-Z_$]*$/i)?(n.setFinalDate.call(n,i),n.start()):t.error("Method %s does not exist on jQuery.countdown".replace(/\%s/gi,i))}else new l(this,e[0],e[1])})}});
|
||||
1488
modules/ets_megamenu/views/js/megamenu-admin.js
Normal file
502
modules/ets_megamenu/views/js/megamenu.js
Normal file
@@ -0,0 +1,502 @@
|
||||
/**
|
||||
* 2007-2021 ETS-Soft
|
||||
*
|
||||
* NOTICE OF LICENSE
|
||||
*
|
||||
* This file is not open source! Each license that you purchased is only available for 1 wesite only.
|
||||
* If you want to use this file on more websites (or projects), you need to purchase additional licenses.
|
||||
* You are not allowed to redistribute, resell, lease, license, sub-license or offer our resources to any third party.
|
||||
*
|
||||
* 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 contact us for extra customization service at an affordable price
|
||||
*
|
||||
* @author ETS-Soft <etssoft.jsc@gmail.com>
|
||||
* @copyright 2007-2021 ETS-Soft
|
||||
* @license Valid for 1 website (or project) for each purchase of license
|
||||
* International Registered Trademark & Property of ETS-Soft
|
||||
*/
|
||||
$(function() {
|
||||
$(document).mouseup(function (e)
|
||||
{
|
||||
var container_block_search = $('.mm_extra_item.active');
|
||||
if (!container_block_search.is(e.target)&& container_block_search.has(e.target).length === 0)
|
||||
{
|
||||
$('.mm_extra_item').removeClass('active');
|
||||
}
|
||||
});
|
||||
|
||||
if($('.mm_extra_item button[type="submit"]').length)
|
||||
{
|
||||
$(document).on('click','.mm_extra_item button[type="submit"]',function(){
|
||||
if(!$(this).closest('.mm_extra_item').hasClass('mm_display_search_default') )
|
||||
{
|
||||
if ( !$(this).closest('.mm_extra_item').hasClass('active') ){
|
||||
$(this).closest('.mm_extra_item').addClass('active');
|
||||
return false;
|
||||
} else {
|
||||
if ($(this).prev('input').val() == 0){
|
||||
$('.mm_extra_item').removeClass('active');
|
||||
return false;
|
||||
}
|
||||
}
|
||||
}
|
||||
});
|
||||
}
|
||||
displayHeightTab();
|
||||
if ($('.ets_mm_megamenu.sticky_enabled').length > 0)
|
||||
{
|
||||
var sticky_navigation_offset_top = $('.ets_mm_megamenu.sticky_enabled').offset().top;
|
||||
var headerFloatingHeight = $('.ets_mm_megamenu.sticky_enabled').height()+($('#header').length > 0 ? parseInt($('.ets_mm_megamenu.sticky_enabled').css('marginTop').replace('px',''))+parseInt($('.ets_mm_megamenu.sticky_enabled').css('marginBottom').replace('px','')) : 0);
|
||||
var oldHeaderMarginBottom = $('#header').length > 0 ? parseInt($('#header').css('marginBottom').replace('px','')) : 0;
|
||||
var sticky_navigation = function(){
|
||||
if(!$('.ets_mm_megamenu').hasClass('sticky_enabled'))
|
||||
return false;
|
||||
var scroll_top = $(window).scrollTop();
|
||||
if (scroll_top > sticky_navigation_offset_top) {
|
||||
$('.ets_mm_megamenu.sticky_enabled').addClass('scroll_heading');
|
||||
if($('#header').length > 0)
|
||||
$('#header').css({'marginBottom':headerFloatingHeight+'px'});
|
||||
} else {
|
||||
$('.ets_mm_megamenu.sticky_enabled').removeClass('scroll_heading');
|
||||
if($('#header').length > 0)
|
||||
$('#header').css({'marginBottom':oldHeaderMarginBottom+'px'});
|
||||
}
|
||||
};
|
||||
sticky_navigation();
|
||||
$(window).scroll(function() {
|
||||
sticky_navigation();
|
||||
});
|
||||
if($(window).width() < 768 && !$('body').hasClass('disable-sticky'))
|
||||
$('body').addClass('disable-sticky');
|
||||
$(window).on('resize',function(e){
|
||||
if($(window).width() < 768 && !$('body').hasClass('disable-sticky'))
|
||||
$('body').addClass('disable-sticky');
|
||||
else
|
||||
if($(window).width() >= 768 && $('body').hasClass('disable-sticky'))
|
||||
$('body').removeClass('disable-sticky');
|
||||
});
|
||||
}
|
||||
|
||||
$(window).load(function(){
|
||||
if ($('.ets_mn_submenu_full_height').length > 0 ){
|
||||
var ver_sub_height = $('.ets_mn_submenu_full_height').height();
|
||||
$('.ets_mn_submenu_full_height').find('.mm_columns_ul').css("min-height",ver_sub_height);
|
||||
}
|
||||
});
|
||||
|
||||
if ( $('.mm_columns_ul_tab_content').length > 0 && $('body#index').length >0 ){
|
||||
$('.mm_columns_ul_tab_content').addClass('active').prev('.arrow').removeClass('closed').addClass('opened');
|
||||
|
||||
}
|
||||
|
||||
|
||||
$(window).resize(function(){
|
||||
$('.mm_menus_ul:not(.ets_mm_all_show_resize)').removeClass('ets_mn_active');
|
||||
});
|
||||
$(document).on('click','.mm_has_sub > .arrow',function(){
|
||||
var wrapper = $(this).next('.mm_columns_ul');
|
||||
if($(this).hasClass('closed'))
|
||||
{
|
||||
$('.mm_columns_ul').removeClass('active');
|
||||
$('.mm_has_sub > .arrow').removeClass('opened');
|
||||
$('.mm_has_sub > .arrow').addClass('closed');
|
||||
var btnObj = $(this);
|
||||
btnObj.removeClass('closed');
|
||||
btnObj.addClass('opened');
|
||||
wrapper.stop(true,true).addClass('active');
|
||||
}
|
||||
else
|
||||
{
|
||||
var btnObj = $(this);
|
||||
btnObj.removeClass('opened');
|
||||
btnObj.addClass('closed');
|
||||
//btnObj.text('+');
|
||||
wrapper.stop(true,true).removeClass('active');
|
||||
}
|
||||
|
||||
});
|
||||
$('.transition_slide:not(.changestatus) li.mm_menus_li').hover(function(){
|
||||
if($(window).width() >= 768){
|
||||
$(this).find('.mm_columns_ul').stop(true,true).slideDown(300);
|
||||
}
|
||||
}, function(){
|
||||
if($(window).width() >= 768){
|
||||
$(this).find('.mm_columns_ul').stop(true,true).slideUp(0);
|
||||
}
|
||||
});
|
||||
|
||||
|
||||
$('.ybc-menu-toggle, .ybc-menu-vertical-button').on('click',function(){
|
||||
var wrapper = $(this).next('.mm_menus_ul');
|
||||
if($(this).hasClass('closed'))
|
||||
{
|
||||
var btnObj = $(this);
|
||||
btnObj.removeClass('closed');
|
||||
btnObj.addClass('opened');
|
||||
//btnObj.text('-');
|
||||
wrapper.stop(true,true).addClass('active');
|
||||
if ( $('.transition_slide.transition_default').length != '' ){
|
||||
wrapper.stop(true,true).slideDown(0);
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
var btnObj = $(this);
|
||||
btnObj.removeClass('opened');
|
||||
btnObj.addClass('closed');
|
||||
//btnObj.text('+');
|
||||
wrapper.stop(true,true).removeClass('active');
|
||||
if ( $('.transition_slide.transition_default').length != '' ){
|
||||
wrapper.stop(true,true).slideUp(0);
|
||||
}
|
||||
}
|
||||
});
|
||||
$('.close_menu').on('click',function(){
|
||||
|
||||
$(this).parent().prev().removeClass('opened');
|
||||
$(this).parent().prev().addClass('closed');
|
||||
$(this).parent().stop(true,true).removeClass('active');
|
||||
|
||||
});
|
||||
//Active menu
|
||||
if($('.ets_mm_megamenu').hasClass('enable_active_menu') && $('.mm_menus_ul > li').length > 0)
|
||||
{
|
||||
var currentUrl = window.location.href;
|
||||
$('.mm_menus_ul > li').each(function(){
|
||||
if($(this).find('a[href="'+currentUrl+'"]').length > 0)
|
||||
{
|
||||
$(this).addClass('active');
|
||||
return false;
|
||||
}
|
||||
});
|
||||
}
|
||||
if($('.mm_breaker').length > 0 && $('.mm_breaker').prev('li').length > 0)
|
||||
{
|
||||
$('.mm_breaker').prev('li').addClass('mm_before_breaker');
|
||||
}
|
||||
|
||||
$('.mm_tab_li_content').hover(function(){
|
||||
if(!$(this).closest('.mm_tabs_li').hasClass('open'))
|
||||
{
|
||||
$(this).closest('.mm_columns_ul_tab').find('.mm_tabs_li').removeClass('open');
|
||||
$(this).closest('.mm_tabs_li').addClass('open');
|
||||
$(this).closest('.mm_columns_ul').removeClass('mm_tab_no_content');
|
||||
if ( !$(this).next('.mm_columns_contents_ul').length ){
|
||||
$(this).closest('.mm_columns_ul').addClass('mm_tab_no_content');
|
||||
}
|
||||
displayHeightTab();
|
||||
}
|
||||
}, function() {
|
||||
if(!$(this).closest('.mm_tabs_li').hasClass('ver_alway_hide'))
|
||||
{
|
||||
$(this).closest('.mm_tabs_li').removeClass('open');
|
||||
}
|
||||
|
||||
});
|
||||
|
||||
/*$('.mm_tab_li_content').on({
|
||||
'mouseover': function (event) {
|
||||
if(!$(this).closest('.mm_tabs_li').hasClass('open'))
|
||||
{
|
||||
$(this).closest('.mm_columns_ul_tab').find('.mm_tabs_li').removeClass('open');
|
||||
$(this).closest('.mm_tabs_li').addClass('open');
|
||||
$(this).closest('.mm_columns_ul').removeClass('mm_tab_no_content');
|
||||
if ( !$(this).next('.mm_columns_contents_ul').length ){
|
||||
$(this).closest('.mm_columns_ul').addClass('mm_tab_no_content');
|
||||
}
|
||||
displayHeightTab();
|
||||
}
|
||||
},
|
||||
'mouseout': function (event) {
|
||||
var e = event.toElement || event.relatedTarget;
|
||||
if(!$(this).closest('.mm_tabs_li').hasClass('ver_alway_hide') && (e.parentNode !== this))
|
||||
{
|
||||
$(this).closest('.mm_tabs_li').removeClass('open');
|
||||
}
|
||||
}
|
||||
});*/
|
||||
|
||||
$('.mm_menus_li:not(.menu_ver_alway_show_sub )').hover(function(){
|
||||
$('.menu_ver_alway_show_sub .mm_columns_ul_tab_content').removeClass('active');
|
||||
}, function() {
|
||||
$('.menu_ver_alway_show_sub .mm_columns_ul_tab_content').addClass('active');
|
||||
});
|
||||
|
||||
if ($('.clicktext_show_submenu').length <= 0)
|
||||
{
|
||||
$(document).on('click touchstar', '.mm_tab_li_content', function (evt) {
|
||||
var btnObj = $(this), wrapper = $(this).next();
|
||||
if (!btnObj.find('.mm_tab_toggle_title a').is(evt.target))
|
||||
{
|
||||
if(btnObj.hasClass('closed'))
|
||||
{
|
||||
$('.mm_tab_li_content').removeClass('opened');
|
||||
$('.mm_tab_li_content').addClass('closed');
|
||||
$('.mm_columns_contents_ul').removeClass('active');
|
||||
btnObj.removeClass('closed');
|
||||
btnObj.addClass('opened');
|
||||
wrapper.stop(true,true).addClass('active');
|
||||
}
|
||||
else
|
||||
{
|
||||
btnObj.removeClass('opened');
|
||||
btnObj.addClass('closed');
|
||||
wrapper.stop(true,true).removeClass('active');
|
||||
}
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
});
|
||||
function autoChangeStatus()
|
||||
{
|
||||
var width_ul_menu = $('ul.mm_menus_ul').width();
|
||||
var width_li_menu=0;
|
||||
$('ul.mm_menus_ul li.mm_menus_li').each(function(){
|
||||
width_li_menu += parseFloat($(this).width());
|
||||
});
|
||||
|
||||
if(width_li_menu > width_ul_menu+5)
|
||||
{
|
||||
$('.ets_mm_megamenu').addClass('changestatus');
|
||||
$('.menu_ver_alway_show_sub .mm_columns_ul_tab_content').removeClass('active');
|
||||
$('#index .menu_ver_alway_show_sub .arrow').removeClass('opened').addClass('closed');
|
||||
}
|
||||
else
|
||||
{
|
||||
$('.ets_mm_megamenu').removeClass('changestatus');
|
||||
if ( $(window).width() > 767 ){
|
||||
$('#index .menu_ver_alway_show_sub .arrow').addClass('opened').removeClass('closed');
|
||||
$('#index .menu_ver_alway_show_sub .mm_columns_ul_tab_content').addClass('active');
|
||||
}
|
||||
}
|
||||
if ( $(window).width() < 768 ){
|
||||
$('.menu_ver_alway_show_sub .mm_columns_ul_tab_content').removeClass('active');
|
||||
$('.menu_ver_alway_show_sub .arrow').removeClass('opened').addClass('closed');
|
||||
}
|
||||
}
|
||||
|
||||
function itemClickMenu($this){
|
||||
var btnObj = $($this).next('.arrow');
|
||||
var wrapper = btnObj.next();
|
||||
if ( ! btnObj.length ){
|
||||
var btn_temp = $($this).closest('.mm_tab_li_content').first();
|
||||
var wrapper = btn_temp.next();
|
||||
if( btn_temp.hasClass('closed')){
|
||||
$('.mm_tab_li_content').removeClass('opened');
|
||||
$('.mm_tab_li_content').addClass('closed');
|
||||
$('.mm_tab_li_content + .mm_columns_contents_ul').removeClass('active');
|
||||
btn_temp.removeClass('closed');
|
||||
btn_temp.addClass('opened');
|
||||
wrapper.stop(true,true).addClass('active');
|
||||
|
||||
|
||||
}else{
|
||||
btn_temp.removeClass('opened');
|
||||
btn_temp.addClass('closed');
|
||||
wrapper.stop(true,true).removeClass('active');
|
||||
}
|
||||
}else{
|
||||
if(btnObj.hasClass('closed'))
|
||||
{
|
||||
$('.mm_has_sub > .arrow').removeClass('opened');
|
||||
$('.mm_has_sub > .arrow').addClass('closed');
|
||||
$('.mm_columns_ul').removeClass('active');
|
||||
|
||||
btnObj.removeClass('closed');
|
||||
btnObj.addClass('opened');
|
||||
wrapper.stop(true,true).addClass('active');
|
||||
}
|
||||
else
|
||||
{
|
||||
btnObj.removeClass('opened');
|
||||
btnObj.addClass('closed');
|
||||
wrapper.stop(true,true).removeClass('active');
|
||||
}
|
||||
}
|
||||
}
|
||||
function clickTextShowMenu(){
|
||||
if ( $('.clicktext_show_submenu').length > 0 ){
|
||||
$('.clicktext_show_submenu li.has-sub').each(function() {
|
||||
$(this).find('a').first().on('click', function(e){
|
||||
if ($(window).width() <= 767 ){
|
||||
e.preventDefault();
|
||||
var btnObj = $(this).next('.arrow');
|
||||
var wrapper = btnObj.next();
|
||||
if(btnObj.hasClass('closed'))
|
||||
{
|
||||
btnObj.removeClass('closed');
|
||||
btnObj.addClass('opened');
|
||||
wrapper.stop(true,true).addClass('active');
|
||||
}
|
||||
else
|
||||
{
|
||||
btnObj.removeClass('opened');
|
||||
btnObj.addClass('closed');
|
||||
wrapper.stop(true,true).removeClass('active');
|
||||
}
|
||||
}
|
||||
});
|
||||
|
||||
});
|
||||
|
||||
}
|
||||
if ( $('.clicktext_show_submenu').length > 0 ){
|
||||
$('.clicktext_show_submenu li.has-sub').each(function() {
|
||||
$(this).find('a').first().on('click', function(e){
|
||||
|
||||
if ( $('.ets_mm_megamenu').hasClass('changestatus') && $(window).width() > 767 ){
|
||||
e.preventDefault();
|
||||
//itemClickMenu(this);
|
||||
var btnObj = $(this).next('.arrow');
|
||||
var wrapper = btnObj.next();
|
||||
if(btnObj.hasClass('closed'))
|
||||
{
|
||||
btnObj.removeClass('closed');
|
||||
btnObj.addClass('opened');
|
||||
wrapper.stop(true,true).addClass('active');
|
||||
}
|
||||
else
|
||||
{
|
||||
btnObj.removeClass('opened');
|
||||
btnObj.addClass('closed');
|
||||
wrapper.stop(true,true).removeClass('active');
|
||||
}
|
||||
}
|
||||
});
|
||||
});
|
||||
}
|
||||
|
||||
if ( $('.clicktext_show_submenu').length > 0 ){
|
||||
$('.clicktext_show_submenu li.mm_tabs_has_content > div').each(function() {
|
||||
$(this).find('a').first().on('click', function(e){
|
||||
if ($(window).width() <= 767 ){
|
||||
e.preventDefault();
|
||||
itemClickMenu(this);
|
||||
}
|
||||
});
|
||||
|
||||
});
|
||||
}
|
||||
if ( $('.clicktext_show_submenu').length > 0 ){
|
||||
$('.clicktext_show_submenu li.mm_tabs_has_content > div').each(function() {
|
||||
$(this).find('a').first().on('click', function(e){
|
||||
if ( $('.ets_mm_megamenu').hasClass('changestatus') && $(window).width() > 767 ){
|
||||
e.preventDefault();
|
||||
itemClickMenu(this);
|
||||
}
|
||||
});
|
||||
});
|
||||
}
|
||||
if ( $('.clicktext_show_submenu').length > 0 ){
|
||||
$('.clicktext_show_submenu li.mm_has_sub > a').each(function() {
|
||||
$(this).on('click', function(e){
|
||||
if ($(window).width() <= 767 ){
|
||||
e.preventDefault();
|
||||
itemClickMenu(this);
|
||||
}
|
||||
});
|
||||
|
||||
});
|
||||
|
||||
}
|
||||
if ( $('.clicktext_show_submenu').length > 0 ){
|
||||
$('.clicktext_show_submenu li.mm_has_sub > a').each(function() {
|
||||
$(this).on('click', function(e){
|
||||
if ( $('.ets_mm_megamenu').hasClass('changestatus') && $(window).width() > 767 ){
|
||||
e.preventDefault();
|
||||
itemClickMenu(this);
|
||||
}
|
||||
});
|
||||
});
|
||||
}
|
||||
if ( $('.clicktext_show_submenu').length > 0 ){
|
||||
$('.mm_tab_has_child > .mm_tab_toggle_title').on('click', function(e){
|
||||
if ( $(this).find('a').length <= 0 ){
|
||||
if ( $('.ets_mm_megamenu').hasClass('changestatus') || $(window).width() > 767 ){
|
||||
var btnObj = $(this).parents('.mm_tab_li_content'), wrapper = $(this).parents('.mm_tab_li_content').next();
|
||||
|
||||
if(btnObj.hasClass('closed'))
|
||||
{
|
||||
$('.mm_tab_li_content').removeClass('opened');
|
||||
$('.mm_tab_li_content').addClass('closed');
|
||||
$('.mm_tab_li_content + .mm_columns_contents_ul').removeClass('active');
|
||||
|
||||
btnObj.removeClass('closed');
|
||||
btnObj.addClass('opened');
|
||||
wrapper.stop(true,true).addClass('active');
|
||||
}
|
||||
else
|
||||
{
|
||||
btnObj.removeClass('opened');
|
||||
btnObj.addClass('closed');
|
||||
wrapper.stop(true,true).removeClass('active');
|
||||
}
|
||||
}
|
||||
}
|
||||
});
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
$(document).on('click','.ets_mm_categories .has-sub .arrow',function(e){
|
||||
e.stopPropagation();
|
||||
var wrapper = $(this).next('.ets_mm_categories');
|
||||
if($(this).hasClass('closed'))
|
||||
{
|
||||
var btnObj = $(this);
|
||||
btnObj.removeClass('closed');
|
||||
btnObj.addClass('opened');
|
||||
wrapper.stop(true,true).addClass('active');
|
||||
}
|
||||
else
|
||||
{
|
||||
var btnObj = $(this);
|
||||
btnObj.removeClass('opened');
|
||||
btnObj.addClass('closed');
|
||||
//btnObj.text('+');
|
||||
wrapper.stop(true,true).removeClass('active');
|
||||
}
|
||||
|
||||
});
|
||||
|
||||
function displayHeightTab()
|
||||
{
|
||||
if($('.mm_tabs_li.open .mm_columns_contents_ul').length)
|
||||
{
|
||||
$('.mm_tabs_li.open .mm_columns_contents_ul').each(function(){
|
||||
$(this).closest('.mm_columns_ul_tab').css('height', $(this).height('px'));
|
||||
});
|
||||
}
|
||||
}
|
||||
$(document).ready(function(){
|
||||
|
||||
var ETS_MM_ACTIVE_BG_GRAY = $('.ets_mm_megamenu').attr('data-bggray');
|
||||
$('.ets_mm_megamenu').removeClass('bg_submenu');
|
||||
if (typeof ETS_MM_ACTIVE_BG_GRAY !== "undefined" && ETS_MM_ACTIVE_BG_GRAY ) {
|
||||
$('.ets_mm_megamenu .mm_menus_ul > li.mm_has_sub').mouseenter(function() {
|
||||
$('.ets_mm_megamenu').addClass('bg_submenu');
|
||||
})
|
||||
.mouseleave(function() {
|
||||
$('.ets_mm_megamenu').removeClass('bg_submenu');
|
||||
});
|
||||
}
|
||||
|
||||
});
|
||||
$(document).ready(function(){
|
||||
autoChangeStatus();
|
||||
clickTextShowMenu();
|
||||
|
||||
$(window).resize(function(){
|
||||
autoChangeStatus();
|
||||
});
|
||||
|
||||
$('.mm_menus_li iframe').hover(function () {
|
||||
$(this).parents('.mm_menus_li').addClass('menu_hover');
|
||||
}, function () {
|
||||
$(this).parents('.mm_menus_li').removeClass('menu_hover');
|
||||
});
|
||||
});
|
||||
109
modules/ets_megamenu/views/js/other.js
Normal file
@@ -0,0 +1,109 @@
|
||||
/**
|
||||
* 2007-2021 ETS-Soft
|
||||
*
|
||||
* NOTICE OF LICENSE
|
||||
*
|
||||
* This file is not open source! Each license that you purchased is only available for 1 wesite only.
|
||||
* If you want to use this file on more websites (or projects), you need to purchase additional licenses.
|
||||
* You are not allowed to redistribute, resell, lease, license, sub-license or offer our resources to any third party.
|
||||
*
|
||||
* 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 contact us for extra customization service at an affordable price
|
||||
*
|
||||
* @author ETS-Soft <contact@etssoft.net>
|
||||
* @copyright 2007-2021 ETS-Soft
|
||||
* @license Valid for 1 website (or project) for each purchase of license
|
||||
* International Registered Trademark & Property of ETS-Soft
|
||||
*/
|
||||
|
||||
$(document).on('click','.link_othermodules',function(){
|
||||
if($('.ets-mod').length > 0)
|
||||
{
|
||||
$('.ets-mod').removeClass('hidden');
|
||||
$('body').addClass('other-modules-loaded');
|
||||
}
|
||||
else
|
||||
if(!$(this).hasClass('active'))
|
||||
{
|
||||
$(this).addClass('active');
|
||||
$('body').addClass('loading-modules');
|
||||
$.ajax({
|
||||
url: $(this).attr('href'),
|
||||
type: 'post',
|
||||
success: function(html){
|
||||
$('body').append(html);
|
||||
$('.link_othermodules').removeClass('active');
|
||||
$('.ets-mod').removeClass('hidden');
|
||||
$('body').addClass('other-modules-loaded').removeClass('loading-modules');
|
||||
var cat_text_first = $('.ets-mod-cats > li:first').html();
|
||||
$('.ets-mod-cats_mobile h4').html(cat_text_first);
|
||||
stickytableft();
|
||||
},
|
||||
error: function()
|
||||
{
|
||||
$('body').removeClass('loading-modules');
|
||||
$('.link_othermodules').removeClass('active');
|
||||
window.open("https://addons.prestashop.com/en/207_ets-soft");
|
||||
}
|
||||
});
|
||||
}
|
||||
return false;
|
||||
});
|
||||
$(document).on('click','.ets-mod-close',function(){
|
||||
$('.ets-mod').addClass('hidden');
|
||||
$('body').removeClass('other-modules-loaded');
|
||||
});
|
||||
$(document).on('click','.ets-mod-cats > li',function(){
|
||||
if(!$(this).hasClass('active'))
|
||||
{
|
||||
$('.ets-mod-cats > li').removeClass('active');
|
||||
$(this).addClass('active');
|
||||
$('.ets-mod-list > li').addClass('hidden');
|
||||
$('.ets-mod-list > li.cat-'+$(this).attr('data-id')).removeClass('hidden');
|
||||
var cattext = $(this).html();
|
||||
$('.ets-mod-cats_mobile h4').html(cattext);
|
||||
$(this).parent('.ets-mod-cats').removeClass('active');
|
||||
}
|
||||
});
|
||||
$(document).on('click','.ets-mod-cats_mobile h4',function(){
|
||||
$('.ets-mod-cats').toggleClass('active');
|
||||
});
|
||||
$(document).ready(function(){
|
||||
$(document).keyup(function(e) {
|
||||
if (e.key === "Escape") {
|
||||
$('.ets-mod').addClass('hidden');
|
||||
$('body').removeClass('other-modules-loaded');
|
||||
}
|
||||
});
|
||||
menuheaderheight();
|
||||
$(window).resize(function(){
|
||||
menuheaderheight();
|
||||
});
|
||||
$(window).load(function(){
|
||||
menuheaderheight();
|
||||
});
|
||||
});
|
||||
function menuheaderheight(){
|
||||
var menuheight = $('.cfu-top-menu').height();
|
||||
$('.cfu-top-menu-height').css('height',menuheight);
|
||||
}
|
||||
function stickytableft(){
|
||||
var sticky_navigation_offset_top = $('.ets-body').offset().top;
|
||||
var sticky_navigation = function(){
|
||||
var scroll_top = $('.ets-mod').scrollTop();
|
||||
var tab_width = $('.ets-mod-cats').width();
|
||||
$('.ets-mod-cats').width(tab_width);
|
||||
if (scroll_top > sticky_navigation_offset_top) {
|
||||
$('.ets-mod-left').addClass('scroll_heading');
|
||||
} else {
|
||||
$('.ets-mod-left').removeClass('scroll_heading');
|
||||
}
|
||||
};
|
||||
sticky_navigation();
|
||||
$('.ets-mod').scroll(function() {
|
||||
sticky_navigation();
|
||||
});
|
||||
}
|
||||
@@ -0,0 +1,174 @@
|
||||
{*
|
||||
* 2007-2021 ETS-Soft
|
||||
*
|
||||
* NOTICE OF LICENSE
|
||||
*
|
||||
* This file is not open source! Each license that you purchased is only available for 1 wesite only.
|
||||
* If you want to use this file on more websites (or projects), you need to purchase additional licenses.
|
||||
* You are not allowed to redistribute, resell, lease, license, sub-license or offer our resources to any third party.
|
||||
*
|
||||
* 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 contact us for extra customization service at an affordable price
|
||||
*
|
||||
* @author ETS-Soft <etssoft.jsc@gmail.com>
|
||||
* @copyright 2007-2021 ETS-Soft
|
||||
* @license Valid for 1 website (or project) for each purchase of license
|
||||
* International Registered Trademark & Property of ETS-Soft
|
||||
*}
|
||||
{extends file="helpers/form/form.tpl"}
|
||||
{block name="label"}
|
||||
{if isset($input.showRequired) && $input.showRequired}
|
||||
<label class="control-label col-lg-3 required">{$input.label|escape:'html':'UTF-8'}</label>
|
||||
{else}
|
||||
{$smarty.block.parent}
|
||||
{/if}
|
||||
{/block}
|
||||
{block name="input"}
|
||||
{if $input.type == 'checkbox'}
|
||||
{if isset($input.values.query) && $input.values.query}
|
||||
{assign var=id_checkbox value=$input.name|cat:'_'|cat:'all'}
|
||||
{assign var=checkall value=true}
|
||||
{foreach $input.values.query as $value}
|
||||
{if !(isset($fields_value[$input.name]) && is_array($fields_value[$input.name]) && $fields_value[$input.name] && in_array($value.value,$fields_value[$input.name]))}
|
||||
{assign var=checkall value=false}
|
||||
{/if}
|
||||
{/foreach}
|
||||
<div class="checkbox_all checkbox">
|
||||
{strip}
|
||||
<label for="{$id_checkbox|escape:'html':'UTF-8'}">
|
||||
<input type="checkbox" name="{$input.name|escape:'html':'UTF-8'}[]" id="{$id_checkbox|escape:'html':'UTF-8'}" {if isset($value.value)} value="0"{/if}{if $checkall} checked="checked"{/if} />
|
||||
{l s='Select/Unselect all' mod='ets_megamenu'}
|
||||
</label>
|
||||
{/strip}
|
||||
</div>
|
||||
{foreach $input.values.query as $value}
|
||||
{assign var=id_checkbox value=$input.name|cat:'_'|cat:$value[$input.values.id]|escape:'html':'UTF-8'}
|
||||
<div class="checkbox{if isset($input.expand) && strtolower($input.expand.default) == 'show'} hidden{/if}">
|
||||
{strip}
|
||||
<label for="{$id_checkbox|escape:'html':'UTF-8'}">
|
||||
<input type="checkbox" name="{$input.name|escape:'html':'UTF-8'}[]" id="{$id_checkbox|escape:'html':'UTF-8'}" {if isset($value.value)} value="{$value.value|escape:'html':'UTF-8'}"{/if}{if isset($fields_value[$input.name]) && is_array($fields_value[$input.name]) && $fields_value[$input.name] && in_array($value.value,$fields_value[$input.name])} checked="checked"{/if} />
|
||||
{$value[$input.values.name]|escape:'html':'UTF-8'}
|
||||
</label>
|
||||
{/strip}
|
||||
</div>
|
||||
{/foreach}
|
||||
{/if}
|
||||
{elseif $input.type == 'search'}
|
||||
<div class="mm_search_product_form">
|
||||
<input class="mm_search_product" name="mm_search_product" {if isset($input.placeholder)}placeholder="{$input.placeholder|escape:'html':'utf-8'}"{/if} autocomplete="off" type="text" />
|
||||
<input class="mm_product_ids" name="id_products" value="{$fields_value[$input.name]|escape:'html':'utf-8'}" type="hidden" />
|
||||
<ul class="mm_products">
|
||||
{hook h='displayMMProductList' ids = $fields_value[$input.name]}
|
||||
<li class="mm_product_loading"></li>
|
||||
</ul>
|
||||
</div>
|
||||
{elseif $input.type == 'radios'}
|
||||
{if isset($input.values) && $input.values}
|
||||
<ul class="mm_product_type">
|
||||
{foreach $input.values as $value}
|
||||
{assign var=id_radio value=$input.name|cat:'_'|cat:$value.value|escape:'html':'UTF-8'}
|
||||
<li class="mm_type_item {$value.value|escape:'html':'UTF-8'}">
|
||||
<label for="{$id_radio|escape:'html':'UTF-8'}">
|
||||
<input type="radio" name="{$input.name|escape:'html':'UTF-8'}" id="{$id_radio|escape:'html':'UTF-8'}" {if isset($value.value)} value="{$value.value|escape:'html':'UTF-8'}"{/if}{if isset($fields_value[$input.name]) && $fields_value[$input.name] && ($value.value == $fields_value[$input.name])} checked="checked"{/if} />
|
||||
{$value.label|escape:'html':'UTF-8'}
|
||||
</label>
|
||||
</li>
|
||||
{/foreach}
|
||||
</ul>
|
||||
{/if}
|
||||
{elseif $input.class == 'mm_browse_icon' && $input.type == 'text'}
|
||||
<div class="dummyfile input-group">
|
||||
{$smarty.block.parent}
|
||||
<span class="input-group-btn mm_browse_icon">
|
||||
<button type="button" name="submitAddBrowseIcon" class="btn btn-default">
|
||||
<i class="icon-search"></i> {l s='Browse icon' mod='ets_megamenu'}
|
||||
</button>
|
||||
</span>
|
||||
</div>
|
||||
{else}
|
||||
{$smarty.block.parent}
|
||||
{if $input.name=='ETS_MM_CACHE_LIFE_TIME'}
|
||||
<a class="mm_clear_cache" href="{$mm_clear_cache_url|escape:'html':'UTF-8'}">{l s='Clear menu cache' mod='ets_megamenu'}</a>
|
||||
{/if}
|
||||
{/if}
|
||||
{/block}
|
||||
{block name="field"}
|
||||
{if $input.name}
|
||||
{$smarty.block.parent}
|
||||
{if $input.type == 'file' && isset($input.display_img) && $input.display_img}
|
||||
<label class="control-label col-lg-3 uploaded_image_label" style="font-style: italic;">{l s='Uploaded image: ' mod='ets_megamenu'}</label>
|
||||
<div class="col-lg-9 uploaded_img_wrapper">
|
||||
<a class="ets_mm_fancy" href="{$input.display_img|escape:'html':'UTF-8'}"><img title="{l s='Click to see full size image' mod='ets_megamenu'}" style="display: inline-block; max-width: 200px;" src="{$input.display_img|escape:'html':'UTF-8'}" /></a>
|
||||
{if (!isset($input.hide_delete) || isset($input.hide_delete) && !$input.hide_delete) && isset($input.img_del_link) && $input.img_del_link && !(isset($input.required) && $input.required)}
|
||||
<a class="delete_url" style="display: inline-block; text-decoration: none!important;" href="{$input.img_del_link|escape:'html':'UTF-8'}"><span style="color: #666"><i style="font-size: 20px;" class="process-icon-delete"></i></span></a>
|
||||
{/if}
|
||||
</div>
|
||||
{/if}
|
||||
{/if}
|
||||
{/block}
|
||||
|
||||
{block name="footer"}
|
||||
{capture name='form_submit_btn'}{counter name='form_submit_btn'}{/capture}
|
||||
{if isset($fieldset['form']['submit']) || isset($fieldset['form']['buttons'])}
|
||||
<div class="panel-footer">
|
||||
{if isset($reset_default) && $reset_default}
|
||||
<span class="btn btn-default mm_reset_default" title="{l s='Only reset configuration to default. Menu data won\'t be lost' mod='ets_megamenu'}">
|
||||
<img src="{$image_baseurl|escape:'html':'UTF-8'}loader.gif" />
|
||||
<i class="process-icon-refresh"></i>
|
||||
{l s='Reset' mod='ets_megamenu'}
|
||||
</span>
|
||||
{/if}
|
||||
{if isset($fieldset['form']['submit']) && !empty($fieldset['form']['submit'])}
|
||||
<div class="img_loading_wrapper hidden">
|
||||
<img src="{$image_baseurl|escape:'html':'UTF-8'}ajax-loader.gif" title="{l s='Loading' mod='ets_megamenu'}" class="ets_megamenu_loading" />
|
||||
</div>
|
||||
<input type="hidden" name="mm_object" value="{$mm_object|escape:'html':'UTF-8'}" />
|
||||
{if isset($list_item) && $list_item}
|
||||
<input type="hidden" name="itemId" value="{$item_id|intval}" />
|
||||
<input type="hidden" name="mm_form_submitted" value="1" />
|
||||
{else}
|
||||
<input type="hidden" name="mm_config_submitted" value="1" />
|
||||
{/if}
|
||||
<div class="mm_save_wrapper">
|
||||
<button type="submit" value="1" class="mm_save_button {if isset($list_item) && $list_item}mm_save{else}mm_config_save{/if} {if isset($fieldset['form']['submit']['class'])}{$fieldset['form']['submit']['class']|escape:'html':'UTF-8'}{else}btn btn-default pull-right{/if}">
|
||||
<i class="{if isset($fieldset['form']['submit']['icon'])}{$fieldset['form']['submit']['icon']|escape:'html':'UTF-8'}{else}process-icon-save{/if}"></i> {$fieldset['form']['submit']['title']|escape:'html':'UTF-8'}
|
||||
</button>
|
||||
<div class="mm_saving">
|
||||
<img src="{$image_baseurl|escape:'html':'UTF-8'}loader.gif" /><br />
|
||||
{l s='Saving' mod='ets_megamenu'}
|
||||
</div>
|
||||
</div>
|
||||
{/if}
|
||||
|
||||
</div>
|
||||
{/if}
|
||||
{/block}
|
||||
{block name="input_row"}
|
||||
{if $input.name=='ETS_MM_HOOK_TO'}
|
||||
<div class="mm_config_form_tab_div">
|
||||
<ul class="mm_config_form_tab">
|
||||
<li class="mm_config_genneral active" data-tab="general">{l s='General' mod='ets_megamenu'}</li>
|
||||
<li class="mm_config_design" data-tab="design">{l s='Design' mod='ets_megamenu'}</li>
|
||||
<li class="mm_config_extra_features" data-tab="extra_features">{l s='Extra features' mod='ets_megamenu'}</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="mm_config_forms">
|
||||
<div class="mm_config_general active">
|
||||
{/if}
|
||||
{if $input.name=='ETS_MM_LAYOUT'}
|
||||
</div>
|
||||
<div class="mm_config_design">
|
||||
{/if}
|
||||
{if $input.name=='ETS_MM_DISPLAY_SHOPPING_CART'}
|
||||
</div>
|
||||
<div class="mm_config_extra_features">
|
||||
{/if}
|
||||
<div class="form-group-wrapper row_{strtolower($input.name)|escape:'html':'UTF-8'}">{$smarty.block.parent}</div>
|
||||
{if $input.name=='ETS_MM_CUSTOM_HTML_TEXT'}
|
||||
</div>
|
||||
</div>
|
||||
{/if}
|
||||
{/block}
|
||||
@@ -0,0 +1,31 @@
|
||||
<?php
|
||||
/**
|
||||
* 2007-2021 ETS-Soft
|
||||
*
|
||||
* NOTICE OF LICENSE
|
||||
*
|
||||
* This file is not open source! Each license that you purchased is only available for 1 wesite only.
|
||||
* If you want to use this file on more websites (or projects), you need to purchase additional licenses.
|
||||
* You are not allowed to redistribute, resell, lease, license, sub-license or offer our resources to any third party.
|
||||
*
|
||||
* 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 contact us for extra customization service at an affordable price
|
||||
*
|
||||
* @author ETS-Soft <etssoft.jsc@gmail.com>
|
||||
* @copyright 2007-2021 ETS-Soft
|
||||
* @license Valid for 1 website (or project) for each purchase of license
|
||||
* International Registered Trademark & Property of ETS-Soft
|
||||
*/
|
||||
|
||||
header("Expires: Mon, 26 Jul 1997 05:00:00 GMT");
|
||||
header("Last-Modified: ".gmdate("D, d M Y H:i:s")." GMT");
|
||||
|
||||
header("Cache-Control: no-store, no-cache, must-revalidate");
|
||||
header("Cache-Control: post-check=0, pre-check=0", false);
|
||||
header("Pragma: no-cache");
|
||||
|
||||
header("Location: ../");
|
||||
exit;
|
||||
@@ -0,0 +1,31 @@
|
||||
<?php
|
||||
/**
|
||||
* 2007-2021 ETS-Soft
|
||||
*
|
||||
* NOTICE OF LICENSE
|
||||
*
|
||||
* This file is not open source! Each license that you purchased is only available for 1 wesite only.
|
||||
* If you want to use this file on more websites (or projects), you need to purchase additional licenses.
|
||||
* You are not allowed to redistribute, resell, lease, license, sub-license or offer our resources to any third party.
|
||||
*
|
||||
* 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 contact us for extra customization service at an affordable price
|
||||
*
|
||||
* @author ETS-Soft <etssoft.jsc@gmail.com>
|
||||
* @copyright 2007-2021 ETS-Soft
|
||||
* @license Valid for 1 website (or project) for each purchase of license
|
||||
* International Registered Trademark & Property of ETS-Soft
|
||||
*/
|
||||
|
||||
header("Expires: Mon, 26 Jul 1997 05:00:00 GMT");
|
||||
header("Last-Modified: ".gmdate("D, d M Y H:i:s")." GMT");
|
||||
|
||||
header("Cache-Control: no-store, no-cache, must-revalidate");
|
||||
header("Cache-Control: post-check=0, pre-check=0", false);
|
||||
header("Pragma: no-cache");
|
||||
|
||||
header("Location: ../");
|
||||
exit;
|
||||
@@ -0,0 +1,31 @@
|
||||
<?php
|
||||
/**
|
||||
* 2007-2021 ETS-Soft
|
||||
*
|
||||
* NOTICE OF LICENSE
|
||||
*
|
||||
* This file is not open source! Each license that you purchased is only available for 1 wesite only.
|
||||
* If you want to use this file on more websites (or projects), you need to purchase additional licenses.
|
||||
* You are not allowed to redistribute, resell, lease, license, sub-license or offer our resources to any third party.
|
||||
*
|
||||
* 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 contact us for extra customization service at an affordable price
|
||||
*
|
||||
* @author ETS-Soft <etssoft.jsc@gmail.com>
|
||||
* @copyright 2007-2021 ETS-Soft
|
||||
* @license Valid for 1 website (or project) for each purchase of license
|
||||
* International Registered Trademark & Property of ETS-Soft
|
||||
*/
|
||||
|
||||
header("Expires: Mon, 26 Jul 1997 05:00:00 GMT");
|
||||
header("Last-Modified: ".gmdate("D, d M Y H:i:s")." GMT");
|
||||
|
||||
header("Cache-Control: no-store, no-cache, must-revalidate");
|
||||
header("Cache-Control: post-check=0, pre-check=0", false);
|
||||
header("Pragma: no-cache");
|
||||
|
||||
header("Location: ../");
|
||||
exit;
|
||||
31
modules/ets_megamenu/views/templates/admin/index.php
Normal file
@@ -0,0 +1,31 @@
|
||||
<?php
|
||||
/**
|
||||
* 2007-2021 ETS-Soft
|
||||
*
|
||||
* NOTICE OF LICENSE
|
||||
*
|
||||
* This file is not open source! Each license that you purchased is only available for 1 wesite only.
|
||||
* If you want to use this file on more websites (or projects), you need to purchase additional licenses.
|
||||
* You are not allowed to redistribute, resell, lease, license, sub-license or offer our resources to any third party.
|
||||
*
|
||||
* 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 contact us for extra customization service at an affordable price
|
||||
*
|
||||
* @author ETS-Soft <etssoft.jsc@gmail.com>
|
||||
* @copyright 2007-2021 ETS-Soft
|
||||
* @license Valid for 1 website (or project) for each purchase of license
|
||||
* International Registered Trademark & Property of ETS-Soft
|
||||
*/
|
||||
|
||||
header("Expires: Mon, 26 Jul 1997 05:00:00 GMT");
|
||||
header("Last-Modified: ".gmdate("D, d M Y H:i:s")." GMT");
|
||||
|
||||
header("Cache-Control: no-store, no-cache, must-revalidate");
|
||||
header("Cache-Control: post-check=0, pre-check=0", false);
|
||||
header("Pragma: no-cache");
|
||||
|
||||
header("Location: ../");
|
||||
exit;
|
||||