42 lines
846 B
PHP
42 lines
846 B
PHP
<?php
|
|
/**
|
|
* 2008-2015 PrestaShop
|
|
*
|
|
* NOTICE OF LICENSE
|
|
*
|
|
* Read in the module
|
|
*
|
|
* 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 refer to http://www.prestashop.com for more information.
|
|
*
|
|
* @author Mediacom87 <support@mediacom87.net>
|
|
* @copyright 2008-today Mediacom87
|
|
* @license define in the module
|
|
* @version 1.5.7
|
|
*/
|
|
|
|
if (!defined('_PS_VERSION_')) {
|
|
exit;
|
|
}
|
|
|
|
/**
|
|
* upgrade_module_1_5_7 function.
|
|
*
|
|
* @access public
|
|
* @param mixed $module
|
|
* @return void
|
|
*/
|
|
function upgrade_module_1_5_7($module)
|
|
{
|
|
if (version_compare(_PS_VERSION_, '1.7.0.0', '>=')) {
|
|
if (!$module->uninstallModuleTab('AdminGlsTracking')) {
|
|
return false;
|
|
}
|
|
}
|
|
|
|
return true;
|
|
}
|