コード例 #1
0
ファイル: push.php プロジェクト: ventsiwad/presta_addons
 * http://opensource.org/licenses/osl-3.0.php
 * If you did not receive a copy of the license and are unable to
 * obtain it through the world-wide-web, please send an email
 * to license@prestashop.com so we can send you a copy immediately.
 *
 * DISCLAIMER
 *
 * Do not edit or add to this file if you wish to upgrade PrestaShop to newer
 * versions in the future. If you wish to customize PrestaShop for your
 * needs please refer to http://www.prestashop.com for more information.
 *
 *  @author PrestaShop SA <*****@*****.**>
 *  @copyright  2007-2014 PrestaShop SA
 *  @license    http://opensource.org/licenses/osl-3.0.php  Open Software License (OSL 3.0)
 *  International Registered Trademark & Property of PrestaShop SA
 */
require_once '../../config/settings.inc.php';
require_once '../../config/defines.inc.php';
if (_PS_VERSION_ < '1.5') {
    require_once 'KwixoUrlSysFrontController.php';
    $kwixo = new KwixoPayment();
    //token security for PS 1.4
    if (Tools::getValue('token') == Tools::getAdminToken($kwixo->getSiteid() . $kwixo->getAuthkey())) {
        //Manage urlsys push, for PS 1.4
        KwixoURLSysFrontController::ManageUrlSys();
    } else {
        header("Location: ../");
    }
} else {
    header("Location: ../");
}
コード例 #2
0
 public function initContent()
 {
     parent::initContent();
     KwixoURLSysFrontController::ManageUrlSys();
 }