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