* @copyright 2007-2014 PrestaShop SA * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) * International Registred Trademark & Property of PrestaShop SA */ class StNewsLetterAjaxModuleFrontController extends ModuleFrontController { /** * @see FrontController::initContent() */ public function initContent() { // To be compaitble with Sendinblue and other modules to sync data. Hook::exec('displayFooter'); $newsletter = Module::getInstanceByName('stnewsletter'); echo $newsletter->ajaxCall(); die; } }