Files
2024-11-05 12:22:50 +01:00

1203 lines
49 KiB
PHP

<?php
/**
* 2007-2015 Leotheme
*
* NOTICE OF LICENSE
*
* Leo Bootstrap Menu
*
* DISCLAIMER
*
* @author leotheme <leotheme@gmail.com>
* @copyright 2007-2015 Leotheme
* @license http://leotheme.com - prestashop template provider
*/
if (!defined('_PS_VERSION_')) {
# module validation
exit;
}
class Btmegamenu extends ObjectModel
{
public $id;
public $id_btmegamenu;
public $id_group;
public $image;
public $icon_class;
public $id_parent = 0;
public $is_group = 0;
public $width;
public $submenu_width;
public $submenu_colum_width;
public $item;
public $item_parameter;
public $colums = 1;
public $type;
public $is_content = 0;
public $show_title = 1;
public $level_depth;
public $active = 1;
public $position;
public $show_sub;
public $url;
public $target;
public $privacy;
public $position_type;
public $menu_class;
public $content;
public $submenu_content;
public $level;
public $left;
public $right;
public $date_add;
public $date_upd;
# Lang
public $title;
public $text;
public $description;
public $content_text;
public $submenu_catids;
public $is_cattree = 1;
private $shop_url;
private $edit_string = '';
private $mega_config = array();
private $edit_string_col = '';
public $is_live_edit = true;
private $leo_module = null;
public $id_shop = '';
// Default for import datasameple
public $groupBox = 'all';
public $sub_with;
public $params_widget;
public function setModule($module)
{
$this->leo_module = $module;
}
/**
* @see ObjectModel::$definition
*/
public static $definition = array(
'table' => 'btmegamenu',
'primary' => 'id_btmegamenu',
'multilang' => true,
'fields' => array(
'id_group' => array('type' => self::TYPE_INT, 'validate' => 'isUnsignedInt', 'required' => true),
'image' => array('type' => self::TYPE_STRING, 'validate' => 'isCatalogName'),
'id_parent' => array('type' => self::TYPE_INT, 'validate' => 'isUnsignedInt', 'required' => true),
'is_group' => array('type' => self::TYPE_BOOL, 'validate' => 'isBool', 'required' => true),
'width' => array('type' => self::TYPE_STRING, 'validate' => 'isCatalogName', 'size' => 255),
'submenu_width' => array('type' => self::TYPE_STRING, 'validate' => 'isCatalogName', 'size' => 255),
'submenu_colum_width' => array('type' => self::TYPE_STRING, 'validate' => 'isString', 'size' => 255),
'item' => array('type' => self::TYPE_STRING, 'validate' => 'isCatalogName', 'size' => 255),
'item_parameter' => array('type' => self::TYPE_STRING, 'validate' => 'isString'),
'colums' => array('type' => self::TYPE_INT, 'validate' => 'isUnsignedInt', 'size' => 255),
'type' => array('type' => self::TYPE_STRING, 'validate' => 'isCatalogName', 'size' => 255),
'is_content' => array('type' => self::TYPE_BOOL, 'validate' => 'isBool'),
'show_title' => array('type' => self::TYPE_BOOL, 'validate' => 'isBool'),
'is_cattree' => array('type' => self::TYPE_BOOL, 'validate' => 'isBool'),
'level_depth' => array('type' => self::TYPE_INT, 'validate' => 'isUnsignedInt'),
'active' => array('type' => self::TYPE_BOOL, 'validate' => 'isBool', 'required' => true),
'position' => array('type' => self::TYPE_INT),
'show_sub' => array('type' => self::TYPE_BOOL, 'validate' => 'isBool'),
'url' => array('type' => self::TYPE_STRING, 'lang' => true, 'validate' => 'isUrl', 'size' => 255),
'target' => array('type' => self::TYPE_STRING, 'validate' => 'isCatalogName', 'size' => 25),
'privacy' => array('type' => self::TYPE_INT, 'validate' => 'isUnsignedInt', 'size' => 6),
'position_type' => array('type' => self::TYPE_STRING, 'validate' => 'isCatalogName', 'size' => 25),
'menu_class' => array('type' => self::TYPE_STRING, 'validate' => 'isCatalogName', 'size' => 255),
'icon_class' => array('type' => self::TYPE_HTML, 'validate' => 'isCleanHtml', 'size' => 125),
'content' => array('type' => self::TYPE_STRING, 'validate' => 'isString'),
'submenu_content' => array('type' => self::TYPE_STRING, 'validate' => 'isString'),
'level' => array('type' => self::TYPE_INT, 'validate' => 'isUnsignedInt'),
'left' => array('type' => self::TYPE_INT, 'validate' => 'isUnsignedInt'),
'right' => array('type' => self::TYPE_INT, 'validate' => 'isUnsignedInt'),
'date_add' => array('type' => self::TYPE_DATE, 'validate' => 'isDateFormat'),
'date_upd' => array('type' => self::TYPE_DATE, 'validate' => 'isDateFormat'),
'sub_with' => array('type' => self::TYPE_STRING, 'validate' => 'isString', 'required' => true, 'size' => 255),
'groupBox' => array('type' => self::TYPE_STRING, 'size' => 255),
'params_widget' => array('type' => self::TYPE_HTML, 'validate' => 'isString'),
# Lang fields
'title' => array('type' => self::TYPE_STRING, 'lang' => true, 'validate' => 'isGenericName', 'required' => true, 'size' => 255),
'text' => array('type' => self::TYPE_STRING, 'lang' => true, 'validate' => 'isGenericName', 'required' => false, 'size' => 255),
'description' => array('type' => self::TYPE_STRING, 'lang' => true, 'validate' => 'isCleanHtml'),
'content_text' => array('type' => self::TYPE_HTML, 'lang' => true, 'validate' => 'isString'),
'submenu_catids' => array('type' => self::TYPE_STRING, 'lang' => false, 'validate' => 'isString'),
),
);
public static function getMenus()
{
$context = Context::getContext();
$id_shop = $context->shop->id;
$id_lang = $context->language->id;
$cacheId = 'leobootstrapmenu_classes_Btmegamenu.php_____getMenus()_' . md5($id_shop.$id_lang);
if (!Cache::isStored($cacheId)) {
$sql = 'SELECT m.*, ml.*
FROM '._DB_PREFIX_.'btmegamenu m
LEFT JOIN '._DB_PREFIX_.'btmegamenu_lang ml ON m.id_btmegamenu = ml.id_btmegamenu AND ml.id_lang = '.(int)$id_lang
.' JOIN '._DB_PREFIX_.'btmegamenu_shop ms ON m.id_btmegamenu = ms.id_btmegamenu AND ms.id_shop = '.(int)$id_shop
.' WHERE m.`active` = 1 ORDER BY `position` ';
$result = Db::getInstance()->executes($sql);
Cache::store($cacheId, $result);
} else {
$result = Cache::retrieve($cacheId);
}
return $result;
}
/**
* $key : field in db
* $value : value in db
* $one : default return one record
*/
public static function cacheMenusByFields($params = array(), $one = false)
{
$result = array();
$menus = self::getMenus();
foreach ($menus as $menu) {
$check_field = true;
foreach ($params as $key => $value) {
if ($menu[$key] != $value) {
$check_field = false;
break;
}
}
if ($check_field) {
if ($one === false) {
$result = $menu;
break;
} else {
$result[] = $menu;
}
}
}
return $result;
}
public function copyFromPost($post = array())
{
/* Classical fields */
foreach ($post as $key => $value) {
if (key_exists($key, $this) && $key != 'id_'.$this->table) {
$this->{$key} = $value;
}
}
/* Multilingual fields */
if (count($this->fieldsValidateLang)) {
$languages = Language::getLanguages(false);
foreach ($languages as $language) {
foreach ($this->fieldsValidateLang as $field => $validation) {
if (Tools::getIsset($field.'_'.(int)$language['id_lang'])) {
$this->{$field}[(int)$language['id_lang']] = Tools::getValue($field.'_'.(int)$language['id_lang']);
}
# validate module
unset($validation);
}
}
}
$this->groupBox = implode(',', $this->groupBox);
}
public function add($autodate = true, $null_values = false)
{
if (isset($this->import_datasample) && $this->import_datasample == true) {
// Datasample
$this->groupBox = 'all';
}
$this->level_depth = $this->calcLevelDepth();
$id_shop = LeoBtmegamenuHelper::getIDShop();
$res = parent::add($autodate, $null_values);
$sql = 'INSERT INTO `'._DB_PREFIX_.'btmegamenu_shop` (`id_shop`, `id_btmegamenu`)
VALUES('.(int)$id_shop.', '.(int)$this->id.')';
$res &= Db::getInstance()->execute($sql);
return $res;
}
public function update($null_values = false)
{
$this->level_depth = $this->calcLevelDepth();
return parent::update($null_values);
}
protected function recursiveDelete(&$to_delete, $id_btmegamenu)
{
if (!is_array($to_delete) || !$id_btmegamenu) {
die(Tools::displayError());
}
$result = Db::getInstance()->executeS('
SELECT `id_btmegamenu`
FROM `'._DB_PREFIX_.'btmegamenu`
WHERE `id_parent` = '.(int)$id_btmegamenu);
foreach ($result as $row) {
$to_delete[] = (int)$row['id_btmegamenu'];
$this->recursiveDelete($to_delete, (int)$row['id_btmegamenu']);
}
}
public function delete()
{
$this->clearCache();
// Get children categories
$to_delete = array((int)$this->id);
$this->recursiveDelete($to_delete, (int)$this->id);
$to_delete = array_unique($to_delete);
// Delete CMS Category and its child from database
$list = count($to_delete) > 1 ? implode(',', array_map('intval', $to_delete)) : (int)$this->id;
Db::getInstance()->execute('DELETE FROM `'._DB_PREFIX_.'btmegamenu` WHERE `id_btmegamenu` IN ('.pSQL($list).')');
Db::getInstance()->execute('DELETE FROM `'._DB_PREFIX_.'btmegamenu_shop` WHERE `id_btmegamenu` IN ('.pSQL($list).')');
Db::getInstance()->execute('DELETE FROM `'._DB_PREFIX_.'btmegamenu_lang` WHERE `id_btmegamenu` IN ('.pSQL($list).')');
Btmegamenu::cleanPositions($this->id_parent);
return true;
}
public function deleteSelection($menus)
{
$return = 1;
foreach ($menus as $id_btmegamenu) {
$obj_menu = new Btmegamenu($id_btmegamenu);
$return &= $obj_menu->delete();
}
return $return;
}
public function calcLevelDepth()
{
$parent_btmegamenu = new Btmegamenu($this->id_parent);
if (!$parent_btmegamenu) {
die('parent Menu does not exist');
}
return $parent_btmegamenu->level_depth + 1;
}
public function updatePosition($way, $position)
{
$sql = '
SELECT cp.`id_btmegamenu`, cp.`position`, cp.`id_parent`
FROM `'._DB_PREFIX_.'btmegamenu` cp
WHERE cp.`id_parent` = '.(int)$this->id_parent.'
ORDER BY cp.`position` ASC';
if (!$res = Db::getInstance()->executeS($sql)) {
return false;
}
foreach ($res as $menu) {
if ((int)$menu['id_btmegamenu'] == (int)$this->id) {
$moved_menu = $menu;
}
}
if (!isset($moved_menu) || !isset($position)) {
return false;
}
// < and > statements rather than BETWEEN operator
// since BETWEEN is treated differently according to databases
return (Db::getInstance()->execute('
UPDATE `'._DB_PREFIX_.'btmegamenu`
SET `position`= `position` '.pSQL($way ? '- 1' : '+ 1').'
WHERE `position`
'.($way ? '> '.(int)$moved_menu['position'].' AND `position` <= '.(int)$position : '< '.(int)$moved_menu['position'].' AND `position` >= '.(int)$position).'
AND `id_parent`='.(int)$moved_menu['id_parent']) && Db::getInstance()->execute('
UPDATE `'._DB_PREFIX_.'btmegamenu`
SET `position` = '.(int)$position.'
WHERE `id_parent` = '.(int)$moved_menu['id_parent'].'
AND `id_btmegamenu`='.(int)$moved_menu['id_btmegamenu']));
}
public static function cleanPositions($id_parent)
{
$result = Db::getInstance()->executeS('
SELECT `id_btmegamenu`
FROM `'._DB_PREFIX_.'btmegamenu`
WHERE `id_parent` = '.(int)$id_parent.'
ORDER BY `position`');
$sizeof = count($result);
for ($i = 0; $i < $sizeof; ++$i) {
$sql = '
UPDATE `'._DB_PREFIX_.'btmegamenu`
SET `position` = '.(int)$i.'
WHERE `id_parent` = '.(int)$id_parent.'
AND `id_btmegamenu` = '.(int)$result[$i]['id_btmegamenu'];
Db::getInstance()->execute($sql);
}
return true;
}
public static function getLastPosition($id_parent)
{
return (Db::getInstance()->getValue('SELECT MAX(position)+1 FROM `'._DB_PREFIX_.'btmegamenu` WHERE `id_parent` = '.(int)$id_parent));
}
public function getInfo($id_btmegamenu, $id_lang = null, $id_shop = null)
{
if (!$id_lang) {
$id_lang = Context::getContext()->language->id;
}
if (!$id_shop) {
$id_shop = Context::getContext()->shop->id;
}
$sql = 'SELECT m.*, md.title, md.description, md.content_text , md.url
FROM '._DB_PREFIX_.'megamenu m
LEFT JOIN '._DB_PREFIX_.'btmegamenu_lang md ON m.id_btmegamenu = md.id_btmegamenu AND md.id_lang = '.(int)$id_lang
.' JOIN '._DB_PREFIX_.'btmegamenu_shop bs ON m.id_btmegamenu = bs.id_btmegamenu AND bs.id_shop = '.(int)$id_shop;
$sql .= ' WHERE m.id_btmegamenu='.(int)$id_btmegamenu;
return Db::getInstance()->executeS($sql);
}
public function getChild($id_btmegamenu = null, $id_group = null, $id_lang = null, $id_shop = null, $active = false)
{
if (!$id_lang) {
$id_lang = Context::getContext()->language->id;
}
if (!$id_shop) {
$id_shop = Context::getContext()->shop->id;
}
$sql = ' SELECT m.*, md.title, md.text, md.url, md.description, md.content_text
FROM '._DB_PREFIX_.'btmegamenu m
LEFT JOIN '._DB_PREFIX_.'btmegamenu_lang md ON m.id_btmegamenu = md.id_btmegamenu AND md.id_lang = '.(int)$id_lang
.' JOIN '._DB_PREFIX_.'btmegamenu_shop bs ON m.id_btmegamenu = bs.id_btmegamenu AND bs.id_shop = '.(int)$id_shop;
if ($id_group != null) {
$sql .= ' WHERE id_group='.(int)$id_group;
}
if ($active) {
$sql .= ' AND m.`active`=1 ';
}
if ($id_btmegamenu != null) {
# validate module
$sql .= ' AND id_parent='.(int)$id_btmegamenu;
}
$sql .= ' ORDER BY `position` ';
return Db::getInstance()->executeS($sql);
}
public function hasChild($id)
{
return isset($this->children[$id]);
}
public function getNodes($id)
{
return $this->children[$id];
}
public function getTree($id = null, $id_group = null)
{
$childs = $this->getChild($id, $id_group);
foreach ($childs as $child) {
# validate module
$this->children[$child['id_parent']][] = $child;
}
$parent = 0;
$output = $this->genTree($parent, 1);
return $output;
}
public function getDropdown($id = null, $selected = 0, $id_group = null)
{
$this->children = array();
$childs = $this->getChild($id, $id_group);
foreach ($childs as $child) {
# validate module871
$this->children[$child['id_parent']][] = $child;
}
$output = array(array('id' => '0', 'title' => 'Root', 'selected' => ''));
$output = $this->genOption(0, 1, $selected, $output);
return $output;
}
public function genOption($parent, $level = 0, $selected = null, $output = array())
{
if ($this->hasChild($parent)) {
$data = $this->getNodes($parent);
foreach ($data as $menu) {
$selected == $menu['id_btmegamenu'] ? 'selected="selected"' : '';
$output[] = array('id' => $menu['id_btmegamenu'], 'title' => str_repeat('-', $level).' '.$menu['title'].' (ID:'.$menu['id_btmegamenu'].')', 'selected' => $selected);
if ($menu['id_btmegamenu'] != $parent) {
$output = $this->genOption($menu['id_btmegamenu'], $level + 1, $selected, $output);
}
}
}
return $output;
}
public function genTree($parent, $level)
{
if ($this->hasChild($parent)) {
$data = $this->getNodes($parent);
$t = $level == 1 ? ' sortable' : '';
Context::getContext()->smarty->assign(array(
'parent' => $parent,
'level' => $level,
't' => $t,
'data' => $data,
'param_id_btmegamenu' => Tools::getValue('id_btmegamenu'),
'model_cat' => $this,
));
return Context::getContext()->smarty->fetch($this->getTemplatePath().'genTree.tpl');
}
return '';
}
public function getTemplatePath()
{
return _PS_MODULE_DIR_ . 'leobootstrapmenu/views/templates/admin/';
}
public function getHookTemplatePath()
{
return _PS_MODULE_DIR_ . 'leobootstrapmenu/views/templates/hook/';
}
public function renderAttrs($menu)
{
$t = sprintf($this->edit_string, $menu['id_btmegamenu'], $menu['is_group'], $menu['colums']);
if ($this->is_live_edit) {
if (isset($menu['megaconfig']->subwidth) && $menu['megaconfig']->subwidth) {
# validate module
$t .= ' data-subwidth="'.$menu['megaconfig']->subwidth.'" ';
}
if (isset($menu['megaconfig']->align) && $menu['megaconfig']->align) {
# validate module
$t .= ' data-align="'.$menu['megaconfig']->align.'" ';
}
if ($menu['sub_with'] != 'widget') {
$hasChild = $this->hasChild($menu['id_btmegamenu']);
} else {
$hasChild = '';
}
$t .= ' data-submenu="'.(isset($menu['megaconfig']->submenu) ? $menu['megaconfig']->submenu : $hasChild).'"';
$t .= ' data-subwith="'.$menu['sub_with'].'"';
}
return $t;
}
public function parserMegaConfig($params)
{
if (!empty($params)) {
foreach ($params as $key => $param) {
if ($param) {
# validate module
if ($param->subwith != 'widget' || ($param->subwith == 'widget' && count($param->rows) >0)) {
$this->mega_config[$key] = $param;
}
}
}
}
}
public function hasMegaMenuConfig($menu)
{
$id = $menu['id_btmegamenu'];
return isset($this->mega_config[$id]) ? $this->mega_config[$id] : array();
}
public function getFrontTree($parent = 0, $edit = false, $params = array(), $id_group = null, $hook = null)
{
$this->parserMegaConfig($params);
if ($edit) {
# validate module
$this->edit_string = ' data-id="%s" data-group="%s" data-cols="%s" ';
} else {
$this->is_live_edit = false;
$this->model_menu_widget = new LeoWidget();
$this->model_menu_widget->setTheme(Context::getContext()->shop->theme->getName());
$this->model_menu_widget->langID = Context::getContext()->language->id;
$this->model_menu_widget->loadWidgets(Context::getContext()->shop->id);
$this->model_menu_widget->loadEngines();
}
$this->edit_string_col = ' data-colwidth="%s" data-class="%s" ';
$childs = Btmegamenu::cacheMenusByFields(array('id_group' => (int)$id_group), true);
if ($edit == false) {
// PERMISSION
foreach ($childs as $key => $menu) {
$id_customer_group = ContextCore::getContext()->customer->id_default_group;
if (!array_key_exists('groupBox', $menu)) {
// PERMISSION FOR OLD VERSION
$menu['groupBox'] = 'all';
}
$id_menu_groups = $this->getGroups($menu['groupBox']);
if (!in_array($id_customer_group, $id_menu_groups) && !in_array('all', $id_menu_groups)) {
// PERMISSION : Not allow show menu level 1
unset($childs[$key]);
}
}
}
foreach ($childs as $child) {
$child['megaconfig'] = $this->hasMegaMenuConfig($child);
$child['megamenu_id'] = $child['id_btmegamenu'];
if (isset($child['megaconfig']->group) && $child['level'] != 0) {
# validate module
$child['is_group'] = $child['megaconfig']->group;
}
if (isset($child['megaconfig']->submenu) && $child['megaconfig']->submenu == 0) {
# validate module
$child['menu_class'] = $child['menu_class'];
}
$this->children[$child['id_parent']][] = $child;
}
$parent = 0;
$theme_name = Context::getContext()->shop->theme->getName();
$protocol = (!empty($_SERVER['HTTPS']) && $_SERVER['HTTPS'] !== 'off' || $_SERVER['SERVER_PORT'] == 443) ? 'https://' : 'http://';
$this->image_base_url = Tools::htmlentitiesutf8($protocol.$_SERVER['HTTP_HOST'].__PS_BASE_URI__).'themes/'.$theme_name.'/'.$this->leo_module->getThemeMediaDir('img').'img/icons/';
$this->shop_url = $this->image_base_url;
$output = '';
$typesub = '';
$group_type = '';
# GET PARAM FROM DATABASE
// $group = new BtmegamenuGroup($id_group);
// $group_params = Tools::jsonDecode(LeoBtmegamenuHelper::base64Decode($group->params), true);
# GET PARAM FROM CACHE
$group = BtmegamenuGroup::cacheGroupsByFields(array('id_btmegamenu_group' => $id_group));
$group_params = Tools::jsonDecode(LeoBtmegamenuHelper::base64Decode($group['params']), true);
$group_type = $group_params['group_type'];
if ($group_type == 'vertical') {
$typesub = $group_params['type_sub'];
if ($typesub == 'auto') {
$theme = Context::getContext()->shop->theme_name;
$cookie = LeoBtmegamenuHelper::getCookie();
if ($hook && $hook == 'rightcolumn') {
if (isset($cookie[$theme.'_layout_dir']) && $cookie[$theme.'_layout_dir']) {
$layout = $cookie[$theme.'_layout_dir'];
if ($layout == 'right-left-main' || $layout == 'right-main-left' || $layout == 'left-right-main') {
$typesub = 'right';
} elseif ($layout == 'main-left-right') {
$typesub = 'left';
}
}
} elseif ($hook && $hook == 'leftcolumn') {
if (isset($cookie[$theme.'_layout_dir']) && $cookie[$theme.'_layout_dir']) {
$layout = $cookie[$theme.'_layout_dir'];
if ($layout == 'right-main-left' || $layout == 'main-left-right') {
$typesub = 'left';
} elseif ($layout == 'left-right-main' || $layout == 'right-left-main') {
$typesub = 'right';
}
}
} elseif (Context::getContext()->language->is_rtl) {
$typesub = 'left';
} else {
$typesub = 'right';
}
}
}
if ($this->hasChild($parent)) {
$data = $this->getNodes($parent);
if ($group_type == 'vertical') {
$output = '<ul class="nav navbar-nav megamenu vertical '.$typesub.'">';
} else {
$output = '<ul class="nav navbar-nav megamenu horizontal">';
}
foreach ($data as $menu) {
if ($edit == false) {
if (!array_key_exists('groupBox', $menu)) {
// PERMISSION FOR OLD VERSION
$menu['groupBox'] = 'all';
}
$id_menu_groups = $this->getGroups($menu['groupBox']);
$id_customer_group = ContextCore::getContext()->customer->id_default_group;
if (!in_array($id_customer_group, $id_menu_groups) && !in_array('all', $id_menu_groups)) {
// PERMISSION : Not allow show menu level 1
continue;
}
}
$align = '';
if (isset($menu['megaconfig']->align) && $menu['megaconfig']->align) {
# validate module
$align = $menu['megaconfig']->align;
}
$addwidget = '';
if ($this->is_live_edit == true) {
if ($menu["sub_with"] != 'widget') {
$addwidget = 'disablewidget';
} else {
$addwidget = 'enablewidget';
}
}
Context::getContext()->smarty->assign(array(
'menu' => $menu,
'addwidget' => $addwidget,
'model' => $this,
'align' => $align,
));
if ($menu['type'] == 'html') {
# Menu level 1
$output .= Context::getContext()->smarty->fetch($this->getHookTemplatePath().'menu_1_html.tpl');
} elseif ($menu['sub_with'] == 'none') {
# Menu level 1
$output .= Context::getContext()->smarty->fetch($this->getHookTemplatePath().'menu_1_nochild.tpl');
} else {
# SHOW SUBMENU + WIDGET
if ($this->hasChild($menu['megamenu_id'])) {
if ($menu["sub_with"] != 'widget') {
# SHOW SUBMENU
Context::getContext()->smarty->assign(array(
'typesub' => $typesub,
'group_type' => $group_type,
));
$output .= Context::getContext()->smarty->fetch($this->getHookTemplatePath().'menu_1_haschild.tpl');
} else {
# SHOW WIDGET
if (isset($menu['megaconfig']) && $menu['megaconfig'] && isset($menu['megaconfig']->rows) && $menu['megaconfig']->rows) {
$output .= $this->genMegaMenuByConfig($menu['megamenu_id'], 1, $menu, true, $typesub, $group_type);
} else {
# NOT SHOW SUBMENU BECAUSE DONT HAVE
$output .= Context::getContext()->smarty->fetch($this->getHookTemplatePath().'menu_1_nochild.tpl');
}
}
} else if (!$this->hasChild($menu['megamenu_id']) && isset($menu['megaconfig']) && $menu['megaconfig'] && isset($menu['megaconfig']->rows) && $menu['megaconfig']->rows) {
# validate module
$output .= $this->genMegaMenuByConfig($menu['megamenu_id'], 1, $menu, true, $typesub, $group_type);
} else {
# NOT SHOW SUBMENU BECAUSE DONT HAVE
$output .= Context::getContext()->smarty->fetch($this->getHookTemplatePath().'menu_1_nochild.tpl');
}
}
}
$output .= '</ul>';
}
$this->leo_module = null;
return $output;
}
public function renderWidgetsInCol($col)
{
if (is_object($col) && isset($col->widgets) && !$this->edit_string) {
$widgets = $col->widgets;
$widgets = explode('|wid-', '|'.$widgets);
if (!empty($widgets)) {
unset($widgets[0]);
$output = '';
foreach ($widgets as $wid) {
$content = $this->model_menu_widget->renderContent($wid);
$output .= $this->leo_module->getWidgetContent($wid, $content['type'], $content['data'], 0);
}
return $output;
}
}
}
/**
* set data configuration for column
*/
public function getColumnDataConfig($col)
{
$output = '';
if (is_object($col) && $this->is_live_edit) {
$vars = get_object_vars($col);
foreach ($vars as $key => $var) {
# validate module
$output .= ' data-'.$key.'="'.$var.'" ';
}
}
return $output;
}
/**
* display mega content based on user configuration
*/
public function genMegaMenuByConfig($parent_id, $level, $menu, $hascat = false, $typesub = '', $group_type = '')
{
unset($parent_id);
$align = '';
$addwidget = '';
if ($this->is_live_edit == true) {
if ($menu["sub_with"] != 'widget') {
$addwidget = 'disablewidget';
} else {
$addwidget = 'enablewidget';
}
}
$class = $level > 1 ? 'dropdown-submenu' : 'dropdown';
if (isset($menu['megaconfig']->align) && $menu['megaconfig']->align) {
# validate module
$align = $menu['megaconfig']->align;
}
$style = '';
if ($menu['sub_with'] == 'widget') {
if (isset($menu['megaconfig']->subwidth) && $menu['megaconfig']->subwidth) {
if ($group_type == 'horizontal') {
$style = 'style="width:'.$menu['megaconfig']->subwidth.'px"';
} else {
if (in_array(Context::getContext()->controller->controller_type, array('front', 'modulefront'))) {
if ($typesub == 'left') {
$style = 'style="width:'.$menu['megaconfig']->subwidth.'px; left:-'.$menu['megaconfig']->subwidth.'px;"';
} else if ($typesub == 'right' || $typesub == 'auto') {
$style = 'style="width:'.$menu['megaconfig']->subwidth.'px; right:-'.$menu['megaconfig']->subwidth.'px;"';
}
} else if (isset($typesub) && $typesub == 'left') {
$style = 'style="width:'.$menu['megaconfig']->subwidth.'px; left:100%;"';
} else {
$style = 'style="width:'.$menu['megaconfig']->subwidth.'px; left:100%;"';
}
}
}
}
Context::getContext()->smarty->assign(array(
'style' => $style,
'menu' => $menu,
'addwidget' => $addwidget,
'model' => $this,
'align' => $align,
'class' => $class,
'hascat' => $hascat,
'typesub' => $typesub,
'group_type' => $group_type,
));
$output = Context::getContext()->smarty->fetch($this->getHookTemplatePath().'menu_1_widget.tpl');
return $output;
}
public function getSelect($menu)
{
$page_name = Dispatcher::getInstance()->getController();
$value = (int)$menu['item'];
$result = '';
switch ($menu['type']) {
case 'product':
if ($value == Tools::getValue('id_product') && $page_name == 'product') {
$result = ' active';
}
break;
case 'category':
if ($value == Tools::getValue('id_category') && $page_name == 'category') {
$result = ' active';
}
break;
case 'cms':
if ($value == Tools::getValue('id_cms') && $page_name == 'cms') {
$result = ' active';
}
break;
case 'manufacturer':
if ($value == Tools::getValue('id_manufacturer') && $page_name == 'manufacturer') {
$result = ' active';
}
break;
case 'supplier':
if ($value == Tools::getValue('id_supplier') && $page_name == 'supplier') {
$result = ' active';
}
break;
case 'url':
$value = $menu['url'];
if (strpos($value, 'http') !== false) {
# validate module
$result = '';
} else {
if ($value == $page_name) {
# validate module
$result = ' active';
} elseif (($value == 'index' || $value == 'index.php') && $page_name == 'index') {
# validate module
$result = ' active';
}
}
break;
default:
$result = '';
break;
}
return $result;
}
public function genFrontTree($parent_id, $level, $parent, $typesub = '', $group_type = '')
{
$output = '';
$attrw = '';
$class = $parent['is_group'] ? 'dropdown-mega' : 'dropdown-menu';
Context::getContext()->smarty->assign(array(
'parent' => $parent,
'typesub' => $typesub,
));
$attrw = Context::getContext()->smarty->fetch($this->getHookTemplatePath().'attrw.tpl');
# Fix validate module
if (strpos($attrw, $this->getHookTemplatePath().'attrw.tpl')) {
$attrw = str_replace('<!-- begin '.$this->getHookTemplatePath().'attrw.tpl -->', '', str_replace('<!-- end '.$this->getHookTemplatePath().'attrw.tpl -->', '', $attrw));
}
$data = $this->getNodes($parent_id);
$parent['colums'] = (int)$parent['colums'];
if ($parent['colums'] > 1) {
if ($parent['sub_with'] == 'submenu') {
Context::getContext()->smarty->assign(array(
'data' => $data,
'colums' => $parent['colums'],
'mod_menu' => $this,
'class' => $class,
'parent' => $parent,
'attrw' => $attrw,
'cols' => ceil(12 / $parent['colums']),
'o_spans' => $this->getColWidth($parent, (int)$parent['colums']),
'level' => $level,
'typesub' => $typesub,
'group_type' => $group_type,
));
$output .= Context::getContext()->smarty->fetch($this->getHookTemplatePath().'menutree_2_submenu.tpl');
} elseif (!empty($parent['megaconfig']->rows)) {
$cols = array_chunk($data, ceil(count($data) / $parent['colums']));
Context::getContext()->smarty->assign(array(
'mod_menu' => $this,
'class' => $class,
'parent' => $parent,
'attrw' => $attrw,
'cols' => $cols,
'o_spans' => $this->getColWidth($parent, (int)$parent['colums']),
'level' => $level,
'typesub' => $typesub,
'group_type' => $group_type,
));
$output .= Context::getContext()->smarty->fetch($this->getHookTemplatePath().'menutree_4.tpl');
} else {
$cols = array_chunk($data, ceil(count($data) / $parent['colums']));
Context::getContext()->smarty->assign(array(
'mod_menu' => $this,
'class' => $class,
'parent' => $parent,
'attrw' => $attrw,
'cols' => $cols,
'o_spans' => $this->getColWidth($parent, (int)$parent['colums']),
'level' => $level,
'typesub' => $typesub,
'group_type' => $group_type,
));
$output .= Context::getContext()->smarty->fetch($this->getHookTemplatePath().'menutree_1.tpl');
}
} else {
if ($parent['sub_with'] == 'submenu') {
Context::getContext()->smarty->assign(array(
'mod_menu' => $this,
'data' => $data,
'class' => $class,
'attrw' => $attrw,
'level' => $level,
'typesub' => $typesub,
'group_type' => $group_type,
));
$output .= Context::getContext()->smarty->fetch($this->getHookTemplatePath().'menutree_2_submenu.tpl');
} elseif (!empty($parent['megaconfig']->rows)) {
Context::getContext()->smarty->assign(array(
'mod_menu' => $this,
'data' => $data,
'class' => $class,
'attrw' => $attrw,
'level' => $level,
'typesub' => $typesub,
'group_type' => $group_type,
));
$output .= Context::getContext()->smarty->fetch($this->getHookTemplatePath().'menutree_3.tpl');
} else {
Context::getContext()->smarty->assign(array(
'mod_menu' => $this,
'data' => $data,
'class' => $class,
'attrw' => $attrw,
'level' => $level,
'typesub' => $typesub,
'group_type' => $group_type,
));
$output .= Context::getContext()->smarty->fetch($this->getHookTemplatePath().'menutree_2_submenu.tpl');
}
}
return $output;
}
public function getCategorie($submenu_catids, $context)
{
$groups = implode(', ', array_map('intval', Customer::getGroupsStatic((int)$context->customer->id)));
$submenu_catids = implode(', ', array_map('intval', explode(',', $submenu_catids)));
$result = Db::getInstance(_PS_USE_SQL_SLAVE_)->executeS('SELECT DISTINCT c.id_parent, c.id_category, c.level_depth , cl.name, cl.link_rewrite
FROM `'._DB_PREFIX_.'category` c
INNER JOIN `'._DB_PREFIX_.'category_lang` cl ON (c.`id_category` = cl.`id_category` AND cl.`id_lang` = '.(int)$context->language->id.Shop::addSqlRestrictionOnLang('cl').')
INNER JOIN `'._DB_PREFIX_.'category_shop` cs ON (cs.`id_category` = c.`id_category` AND cs.`id_shop` = '.(int)$context->shop->id.')
WHERE (c.`active` = 1 OR c.`id_category` = '.(int)Configuration::get('PS_HOME_CATEGORY').')
AND c.`id_category` != '.(int)Configuration::get('PS_ROOT_CATEGORY').'
AND c.id_category IN (SELECT id_category FROM `'._DB_PREFIX_.'category_group` WHERE `id_group` IN ('.$groups.') AND id_category IN ('.$submenu_catids.'))
ORDER BY `level_depth` ASC, cs.`position`');
return $result;
}
/**
* Submenu render HTML
*/
public function renderMenuContent($menu, $level, $typesub = '', $group_type = '')
{
$output = '';
$class = $menu['is_group'] ? 'mega-group' : '';
$menu['menu_class'] = ' '.$menu['menu_class'].' '.$class;
Context::getContext()->smarty->assign(array(
'menu' => $menu,
'model' => $this,
'level' => $level,
'typesub' => $typesub,
'group_type' => $group_type,
));
if ($menu['type'] == 'html') {
Context::getContext()->smarty->assign(array(
'addwidget' => '',
'align' => '',
));
$output .= Context::getContext()->smarty->fetch($this->getHookTemplatePath().'menu_1_html.tpl');
} else {
if ($this->hasChild($menu['megamenu_id'])) {
$output .= Context::getContext()->smarty->fetch($this->getHookTemplatePath().'submenu_1_haschild.tpl');
} else if ($menu['megaconfig'] && $menu['megaconfig']->rows) {
$output .= $this->genMegaMenuByConfig($menu['megamenu_id'], $level, $menu, false, $typesub, $group_type);
} else {
$output .= Context::getContext()->smarty->fetch($this->getHookTemplatePath().'submenu_1_nochild.tpl');
}
}
return $output;
}
public function getLink($menu)
{
if ($this->edit_string) {
# validate module
return '#';
}
$value = (int)$menu['item'];
$result = '';
$link = new Link();
$id_lang = Context::getContext()->language->id;
$id_shop = Context::getContext()->shop->id;
switch ($menu['type']) {
case 'product':
if (Validate::isLoadedObject($obj_pro = new Product($value, true, $id_lang))) {
# validate module
$result = $link->getProductLink((int)$obj_pro->id, $obj_pro->link_rewrite, null, null, $id_lang, null, (int)Product::getDefaultAttribute((int)$obj_pro->id), false, false, true);
}
break;
case 'category':
if (Validate::isLoadedObject($obj_cate = new Category($value, $id_lang))) {
# validate module
$result = $link->getCategoryLink((int)$obj_cate->id, $obj_cate->link_rewrite, $id_lang);
}
break;
case 'cms':
if (Validate::isLoadedObject($obj_cms = new CMS($value, $id_lang))) {
# validate module
$result = $link->getCMSLink((int)$obj_cms->id, $obj_cms->link_rewrite, $id_lang);
}
break;
case 'cms_category':
if (Validate::isLoadedObject($obj_cate = new CMSCategory($value, $id_lang))) {
# validate module
$result = $link->getCMSCategoryLink((int)$obj_cate->id, $obj_cate->link_rewrite);
}
break;
case 'url':
// MENU TYPE : URL
if (preg_match('/http:\/\//', $menu['url']) || preg_match('/https:\/\//', $menu['url'])) {
// ABSOLUTE LINK : default
} else {
// RELATIVE LINK : auto insert host
$host_name = LeoBtmegamenuHelper::getBaseLink().LeoBtmegamenuHelper::getLangLink();
$menu['url'] = $host_name.$menu['url'];
}
$value = $menu['url'];
$regex = '((https?|ftp)\:\/\/)?'; // SCHEME
$regex .= '([a-z0-9+!*(),;?&=\$_.-]+(\:[a-z0-9+!*(),;?&=\$_.-]+)?@)?'; // User and Pass
$regex .= '([a-z0-9-.]*)\.([a-z]{2,3})'; // Host or IP
$regex .= '(\:[0-9]{2,5})?'; // Port
$regex .= '(\/([a-z0-9+\$_-]\.?)+)*\/?'; // Path
$regex .= '(\?[a-z+&\$_.-][a-z0-9;:@&%=+\/\$_.-]*)?'; // GET Query
$regex .= '(#[a-z_.-][a-z0-9+\$_.-]*)?'; // Anchor
if ($value == 'index' || $value == 'index.php') {
$result = $link->getPageLink('index.php', false, $id_lang);
break;
} elseif ($value == '#' || preg_match("/^$regex$/", $value)) {
$result = $value;
break;
} else {
$result = $value;
}
break;
case 'manufacture':
if (Validate::isLoadedObject($obj_manu = new Manufacturer($value, $id_lang))) {
# validate module
$result = $link->getManufacturerLink((int)$obj_manu->id, $obj_manu->link_rewrite, $id_lang);
}
break;
case 'supplier':
if (Validate::isLoadedObject($obj_supp = new Supplier($value, $id_lang))) {
# validate module
$result = $link->getSupplierLink((int)$obj_supp->id, $obj_supp->link_rewrite, $id_lang);
}
break;
case 'controller':
//getPageLink('history', true, Context::getContext()->language->id, null, false, $id_shop);
$result = $link->getPageLink($menu['item'], null, $id_lang, null, false, $id_shop);
if ($menu['item_parameter'] != '') {
$result .= $menu['item_parameter'];
}
break;
default:
$result = '#';
break;
}
return $result;
}
public function getColWidth($menu, $cols)
{
$output = array();
$split = preg_split('#\s+#', $menu['submenu_colum_width']);
if (!empty($split) && !empty($menu['submenu_colum_width'])) {
foreach ($split as $sp) {
$tmp = explode('=', $sp);
if (count($tmp) > 1) {
# validate module
$output[trim(preg_replace('#col#', '', $tmp[0]))] = (int)$tmp[1];
}
}
}
$tmp = array_sum($output);
$spans = array();
$t = 0;
for ($i = 1; $i <= $cols; $i++) {
if (array_key_exists($i, $output)) {
# validate module
$spans[$i] = 'col-sm-'.$output[$i];
} else {
if ((12 - $tmp) % ($cols - count($output)) == 0) {
# validate module
$spans[$i] = 'col-sm-'.((12 - $tmp) / ($cols - count($output)));
} else {
if ($t == 0) {
# validate module
$spans[$i] = 'col-sm-'.(((11 - $tmp) / ($cols - count($output))) + 1 );
} else {
# validate module
$spans[$i] = 'col-sm-'.(((11 - $tmp) / ($cols - count($output))) + 0 );
}
$t++;
}
}
}
return $spans;
}
public function validateFields($die = true, $error_return = false)
{
$type = Tools::getValue('type');
if ($type == 'url') {
foreach (Language::getIDs(false) as $id_lang) {
$temp = Tools::getValue('url_'.(int)$id_lang);
$temp = $this->url[$id_lang];
if (empty($temp)) {
$message = 'URL is required';
if ($die) {
throw new PrestaShopException($message);
}
return $error_return ? $message : false;
}
}
}
return parent::validateFields($die, $error_return);
}
public function getGroups($parram = null, $edit = false)
{
$groupBox = array();
if ($edit == true) {
// BACKEND
if ($this->groupBox && Tools::strtolower($this->groupBox) == 'all') {
$groupBox[0] = 'all';
} elseif ($this->groupBox) {
$groupBox = explode(',', $this->groupBox);
}
} else {
// FRONTEND
$groupBox = explode(',', $parram);
}
return $groupBox;
}
//reset params widget by group
public function resetParamsWidget($id_group)
{
$sql = '
UPDATE `'._DB_PREFIX_.'btmegamenu`
SET `params_widget`= ""
WHERE `id_group` = '.(int)$id_group.' AND `id_parent` = 0';
return Db::getInstance(_PS_USE_SQL_SLAVE_)->execute($sql);
}
//get all menu root of group
public static function getMenusRoot($id_group)
{
$sql = '
SELECT `id_btmegamenu` FROM `'._DB_PREFIX_.'btmegamenu`
WHERE `id_group` = '.(int)$id_group.' AND `id_parent` = 0';
return Db::getInstance(_PS_USE_SQL_SLAVE_)->executeS($sql);
}
//get params widget by group
public function getParamsWidget()
{
$sql = 'SELECT `params_widget` FROM `'._DB_PREFIX_.'btmegamenu`
WHERE `id_btmegamenu` = '.(int)$this->id;
return Db::getInstance(_PS_USE_SQL_SLAVE_)->getValue($sql);
}
//get params widget by group
public function updateParamsWidget($params)
{
$sql = 'UPDATE `'._DB_PREFIX_.'btmegamenu`
SET `params_widget`= "'.pSQL($params).'"
WHERE `id_btmegamenu` = '.(int)$this->id;
return Db::getInstance(_PS_USE_SQL_SLAVE_)->execute($sql);
}
}