42 lines
959 B
PHP
42 lines
959 B
PHP
<?php
|
|
/**
|
|
* Since 2013 Ovidiu Cimpean.
|
|
*
|
|
* Ovidiu Cimpean - Newsletter Pro © All rights reserved.
|
|
*
|
|
* DISCLAIMER
|
|
*
|
|
* Do not edit, modify or copy this file.
|
|
* If you wish to customize it, contact us at addons4prestashop@gmail.com.
|
|
*
|
|
* @author Ovidiu Cimpean <addons4prestashop@gmail.com>
|
|
* @copyright Since 2013 Ovidiu Cimpean
|
|
* @license Do not edit, modify or copy this file
|
|
*
|
|
* @version Release: 4
|
|
*/
|
|
|
|
if (!defined('_PS_VERSION_')) {
|
|
exit;
|
|
}
|
|
|
|
function upgrade_module_1_8_0($module)
|
|
{
|
|
$upgrade = $module->upgrade;
|
|
|
|
// hooks update (no)
|
|
// configuration update (no)
|
|
$upgrade->updateConfiguration('SMTP_ACTIVE', 0);
|
|
$upgrade->updateConfiguration('SMTP', [
|
|
'PS_MAIL_DOMAIN' => '',
|
|
'PS_MAIL_SERVER' => '',
|
|
'PS_MAIL_USER' => '',
|
|
'PS_MAIL_PASSWD' => '',
|
|
'PS_MAIL_SMTP_ENCRYPTION' => '',
|
|
'PS_MAIL_SMTP_PORT' => '',
|
|
]);
|
|
// database update (no)
|
|
|
|
return $upgrade->success();
|
|
}
|