22 lines
539 B
PHP
22 lines
539 B
PHP
<?php
|
|
/**
|
|
* Module Ekomi
|
|
*
|
|
* @category Advertising and Marketing
|
|
* @author Web in Color <addons@webincolor.fr>
|
|
* @copyright 2013 WebInColor
|
|
* @version 1.0
|
|
* @link http://www.webincolor.fr/
|
|
* @since File available since Release 1.0
|
|
*/
|
|
|
|
|
|
require_once(dirname(__FILE__).'/../../config/config.inc.php');
|
|
|
|
// init front controller in order to use Tools::redirect
|
|
$controller = new FrontController();
|
|
$controller->init();
|
|
|
|
Tools::redirect(Context::getContext()->link->getModuleLink('ekomi', 'unsubscribe'));
|
|
|
|
?>
|