first commit
This commit is contained in:
31
modules/ets_cfultimate/upgrade/index.php
Normal file
31
modules/ets_cfultimate/upgrade/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;
|
||||
67
modules/ets_cfultimate/upgrade/upgrade-1.0.3.php
Normal file
67
modules/ets_cfultimate/upgrade/upgrade-1.0.3.php
Normal file
@@ -0,0 +1,67 @@
|
||||
<?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_1_0_3()
|
||||
{
|
||||
$res = ct_check_colum('ets_cfu_contact', 'group_access', 'varchar(255) CHARACTER SET utf8 NOT NULL AFTER `hook`');
|
||||
$res &= ct_check_colum('ets_cfu_contact', 'only_customer', 'INT(1) NOT NULL AFTER `group_access`');
|
||||
|
||||
if ( $res ){
|
||||
$group = Group::getGroups(Context::getContext()->language->id, true);
|
||||
$total_group = count($group);
|
||||
$group_temp = array();
|
||||
for( $i = 0; $i< $total_group; $i++){
|
||||
$group_temp[] = $group[$i]['id_group'];
|
||||
}
|
||||
$str_update = implode(',',$group_temp);
|
||||
$res &= DB::getInstance()->execute('UPDATE `'._DB_PREFIX_.'ets_cfu_contact` SET group_access=\''.$str_update.'\'');
|
||||
}
|
||||
return $res;
|
||||
}
|
||||
|
||||
if ( ! function_exists('ct_check_colum')){
|
||||
function ct_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;
|
||||
');
|
||||
}
|
||||
}
|
||||
83
modules/ets_cfultimate/upgrade/upgrade-1.0.4.php
Normal file
83
modules/ets_cfultimate/upgrade/upgrade-1.0.4.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;
|
||||
function upgrade_module_1_0_4()
|
||||
{
|
||||
if ($shops = Shop::getShops()){
|
||||
$shops[] = array('id_shop' => null);
|
||||
foreach ($shops as $shop){
|
||||
Configuration::updateValue('ETS_CFU_ENABLE_HOOK_SHORTCODE','0',false,null,(int)$shop['id_shop']);
|
||||
}
|
||||
}
|
||||
$res = ct_check_colum('ets_cfu_contact', 'thank_you_active', 'INT(1) NOT NULL AFTER `only_customer`');
|
||||
$res &= ct_check_colum('ets_cfu_contact', 'thank_you_page', 'VARCHAR(255) CHARACTER SET utf8 NOT NULL AFTER `thank_you_active`');
|
||||
|
||||
|
||||
$res &= ct_check_colum('ets_cfu_contact_lang', 'message_email_black_list', 'TEXT CHARACTER SET utf8 NOT NULL AFTER `message_ip_black_list`');
|
||||
$res &= ct_check_colum('ets_cfu_contact_lang', 'thank_you_page_title', 'VARCHAR(255) CHARACTER SET utf8 NOT NULL AFTER `message_email_black_list`');
|
||||
$res &= ct_check_colum('ets_cfu_contact_lang', 'thank_you_message', 'TEXT CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL AFTER `thank_you_page_title`');
|
||||
$res &= ct_check_colum('ets_cfu_contact_lang', 'thank_you_alias', 'VARCHAR(100) CHARACTER SET utf8 NOT NULL AFTER `thank_you_message`');
|
||||
$res &= ct_check_colum('ets_cfu_contact_lang', 'thank_you_url', 'VARCHAR(255) CHARACTER SET utf8 NOT NULL AFTER `thank_you_message`');
|
||||
|
||||
update_database();
|
||||
return $res;
|
||||
}
|
||||
|
||||
if ( ! function_exists('ct_check_colum')){
|
||||
function ct_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('update_database')){
|
||||
function update_database(){
|
||||
DB::getInstance()->execute('UPDATE `'._DB_PREFIX_.'ets_cfu_contact` SET `thank_you_active`=0,`thank_you_page`="thank_page_default" ');
|
||||
DB::getInstance()->execute('UPDATE `'._DB_PREFIX_.'ets_cfu_contact_lang` SET `thank_you_page_title`=\'Thanks for submitting the form\',
|
||||
`message_email_black_list` =\'Your email is blocked. Contact webmaster for more info.\',
|
||||
`thank_you_message`="<p>Thank you for contacting us.</p> <p>This message is to confirm that you have successfully submitted the contact form.</p> <p>We\'ll get back to you shortly.</p>",
|
||||
`thank_you_alias` = \'thanks-for-submitting-the-form\' ');
|
||||
|
||||
return true;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user