* @copyright 2015 NetReviews SAS * @version Release: $Revision: 7.1.4 * @license NetReviews * @date 25/08/2015 * International Registered Trademark & Property of NetReviews SAS */ if (!defined('_PS_VERSION_')) { exit; } /** * Function used to update your module from previous versions to the version 7.1.31, * Don't forget to create one file per version. */ function upgrade_module_7_1_31($module) { return upgradePsConfiguration_7_1_31($module) //Upgrade PS configuration from previous versions to the version 7.1.31 && upgradeHook_7_1_31($module) //Upgrade hook from previous versions to the version 7.1.31 && upgradeDatabase_7_1_31($module); //Upgrade database from previous versions to the version 7.1.31 } /** * Function used to update your PS configuration from previous versions to the version 7.1.31, */ function upgradePsConfiguration_7_1_31() { return true; } /** * Function used to update your hook from previous versions to the version 7.1.31, */ function upgradeHook_7_1_31($module) { return true; } /** * Function used to update your database from previous versions to the version 7.1.31, */ function upgradeDatabase_7_1_31($module) { return true; }