12 lines
233 B
PHP
12 lines
233 B
PHP
<?php
|
|
|
|
if (!defined('_PS_VERSION_')) {
|
|
exit;
|
|
}
|
|
|
|
function upgrade_module_1_1_0($object) {
|
|
return ($object->registerHook('actionValidateOrder') &&
|
|
$object->registerHook('sendMailAlterTemplateVars')
|
|
);
|
|
}
|