Files
newwalls.pl/modules/mailchimppro/upgrade/upgrade-2.0.3.php
2024-12-17 13:43:22 +01:00

33 lines
649 B
PHP

<?php
/**
* MailChimp
*
* NOTICE OF LICENSE
*
* This source file is subject to the Commercial License
* you can't distribute, modify or sell this code
*
* DISCLAIMER
*
* Do not edit or add to this file
* If you need help please contact leo@prestachamps.com
*
* @author Mailchimp
* @copyright Mailchimp
* @license commercial
*/
if (!defined('_PS_VERSION_')) {
exit;
}
function upgrade_module_2_0_3(Mailchimppro $object)
{
return (
$object->registerHook('displayFooterBefore') &&
$object->registerHook('actionCustomerAccountAdd') &&
$object->registerHook('actionCustomerAccountUpdate')
);
}