Files
drmaterac.pl/modules/rc_pganalytics/upgrade/Upgrade-4.1.0.php
2025-01-06 20:47:25 +01:00

29 lines
646 B
PHP

<?php
/**
* NOTICE OF LICENSE
*
* This source file is subject to a trade license awarded by
* Garamo Online L.T.D.
*
* Any use, reproduction, modification or distribution
* of this source file without the written consent of
* Garamo Online L.T.D It Is prohibited.
*
* @author Reaction Code <info@reactioncode.com>
* @copyright 2015-2020 Garamo Online L.T.D
* @license Commercial license
*/
function upgrade_module_4_1_0($module)
{
$add_hooks = array(
'displayAdminOrderTabOrder',
'displayAdminOrderContentOrder'
);
$module->registerHook($add_hooks);
Media::clearCache();
return true;
}