Files
wyczarujprezent.pl/modules/ecsgtmpro/controllers/admin/AdminEcsGtmProOrdersController.php
2024-10-28 22:14:22 +01:00

33 lines
1.2 KiB
PHP

<?php
/**
* 2022 ECSoft
*
* NOTICE OF LICENSE
*
* This source file is subject to the Academic Free License (AFL 3.0)
* that is bundled with this package in the file LICENSE.txt.
* It is also available through the world-wide-web at this URL:
* http://opensource.org/licenses/afl-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 dev.ecsoft@gmail.com so we can send you a copy immediately.
*
* @author ECSoft <dev.ecsoft@gmail.com>
* @copyright 2022 ECSoft
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
* International Registered Trademark & Property of ECSoft
*/
require_once dirname(__FILE__) . '/../../classes/EcsGtmProOrder.php';
require_once dirname(__FILE__) . '/../../classes/EcsGtmProProListHelper.php';
require_once dirname(__FILE__) . '/../../classes/EcsGtmProTools.php';
require_once dirname(__FILE__) . '/../../ecsgtmpro.php';
class AdminEcsGtmProOrdersController extends ModuleAdminController
{
public function initContent()
{
$url = Context::getContext()->link->getAdminLink('AdminModules', true, array(), array('configure' => 'ecsgtmpro')) . '#/settings/gtm-orders';
Tools::redirect($url);
}
}