* @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`="

Thank you for contacting us.

This message is to confirm that you have successfully submitted the contact form.

We\'ll get back to you shortly.

", `thank_you_alias` = \'thanks-for-submitting-the-form\' '); return true; } }