* @copyright 2016 NetReviews SAS * @license NetReviews * @version Release: $Revision: 7.2.2 * @date 26/10/2016 * 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.2.2, * Don't forget to create one file per version. */ function upgrade_module_7_1_4($module) { return upgradePsConfiguration_7_1_4($module) //Upgrade PS configuration from previous versions to the version 7.2.2 && upgradeHook_7_1_4($module) //Upgrade hook from previous versions to the version 7.2.2 && upgradeDatabase_7_1_4($module); //Upgrade database from previous versions to the version 7.2.2 } /** * Function used to update your PS configuration from previous versions to the version 7.2.2, */ function upgradePsConfiguration_7_1_4() { // return Configuration::updateValue('AV_DISPLAYGOOGLESNIPPET', '0'); return true; } /** * Function used to update your hook from previous versions to the version 7.2.2, */ function upgradeHook_7_1_4() { return true; } /** * Function used to update your database from previous versions to the version 7.2.2, */ function upgradeDatabase_7_1_4() { return true; }