- Added French translations for the OmniPrice module (fr.php). - Added Italian translations for the OmniPrice module (it.php). - Created empty Dutch translation file (nl.php). - Implemented upgrade script for version 1.1.11 to update configuration for showing real discount. - Implemented upgrade script for version 1.2.0 to update configuration for indexing inactive products. - Implemented upgrade script for version 1.2.3 to update configuration for ignoring non-EU countries.
13 lines
336 B
PHP
13 lines
336 B
PHP
<?php
|
|
|
|
require_once('../../config/config.inc.php');
|
|
require_once('../../init.php');
|
|
|
|
$omni = Module::getInstanceByName('gm_omniprice');
|
|
$token = Tools::getValue('token');
|
|
$comparedToken = Tools::getAdminToken('gm_omniprice');
|
|
if ($token != $comparedToken) {
|
|
die('invalid token');
|
|
}
|
|
$omni->fillMissingCache(true);
|
|
echo 'FINISH<br/>'; |