Shagshag
7/25/2016 - 2:52 PM

ajax.php

<?php
/**
 * Ajax entry
 *
 * @category  Prestashop
 * @category  Module
 * @author    Samdha <contact@samdha.net>
 * @copyright Samdha
 * @license   commercial license see license.txt
 */

class ModuleAjaxModuleFrontController extends ModuleFrontController
{
    public function initContent()
    {
        $this->module->ajax(true);
        die();
    }
}