10 lines
204 B
PHP
10 lines
204 B
PHP
|
<?php
|
||
|
|
||
|
if (!defined('_PS_VERSION_'))
|
||
|
exit;
|
||
|
|
||
|
function upgrade_module_1_3($object)
|
||
|
{
|
||
|
return ($object->registerHook('actionObjectCmsUpdateAfter') && $object->registerHook('actionObjectCmsDeleteAfter'));
|
||
|
}
|