17 lines
261 B
PHP
17 lines
261 B
PHP
|
|
<?php
|
||
|
|
/**
|
||
|
|
* @param Ps_accounts $module
|
||
|
|
*
|
||
|
|
* @return bool
|
||
|
|
*
|
||
|
|
* @throws Exception
|
||
|
|
*/
|
||
|
|
function upgrade_module_6_1_4($module)
|
||
|
|
{
|
||
|
|
require __DIR__ . '/../src/enforce_autoload.php';
|
||
|
|
|
||
|
|
$module->registerHook($module->getHooksToRegister());
|
||
|
|
|
||
|
|
return true;
|
||
|
|
}
|