| Server IP : 46.105.57.169 / Your IP : 216.73.216.84 Web Server : Apache System : Linux webd003.cluster120.gra.hosting.ovh.net 5.15.206-ovh-vps-grsec-zfs-classid #1 SMP Fri May 15 02:41:25 UTC 2026 x86_64 User : maitricfuz ( 93378) PHP Version : 8.4.10 Disable Function : _dyuweyrj4,_dyuweyrj4r,dl MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/m/a/i/maitricfuz/www/new-saint-martin/administrator/components/com_templateck/ |
Upload File : |
<?php
/**
* @name Template Creator CK
* @copyright Copyright (C) since 2011. All rights reserved.
* @license GNU General Public License version 2 or later; see LICENSE.txt
* @author Cedric Keiflin - https://www.template-creator.com - https://www.joomlack.fr
*/
// no direct access
defined('_JEXEC') or die;
define('TCK_LOADED', 1);
define('CK_LOADED', 1);
jimport('joomla.filesystem.file');
jimport('joomla.filesystem.folder');
// Access check.
if (!\Joomla\CMS\Factory::getUser()->authorise('core.manage', 'com_templateck')) {
throw new Exception(JText::_('JERROR_ALERTNOAUTHOR'), 403);
}
// set variables
require_once JPATH_ROOT . '/administrator/components/com_templateck/helpers/defines.php';
// include the classes
require_once TEMPLATECREATORCK_PATH . '/helpers/ckinput.php';
require_once TEMPLATECREATORCK_PATH . '/helpers/cktext.php';
require_once TEMPLATECREATORCK_PATH . '/helpers/ckpath.php';
require_once TEMPLATECREATORCK_PATH . '/helpers/ckfile.php';
require_once TEMPLATECREATORCK_PATH . '/helpers/ckfolder.php';
require_once TEMPLATECREATORCK_PATH . '/helpers/ckcompatibility.php';
require_once TEMPLATECREATORCK_PATH . '/helpers/ckfof.php';
require_once TEMPLATECREATORCK_PATH . '/helpers/helper.php';
require_once TEMPLATECREATORCK_PATH . '/helpers/ckcreator.php';
$input = Templatecreatorck\CKFof::getInput();
require_once TEMPLATECREATORCK_PATH . '/helpers/ckinterface.php';
require_once TEMPLATECREATORCK_PATH . '/helpers/ckstyles.php';
require_once TEMPLATECREATORCK_PATH . '/helpers/ZipArchiver.php';
require_once TEMPLATECREATORCK_PATH . '/helpers/ckcontroller.php';
require_once TEMPLATECREATORCK_PATH . '/helpers/ckmodel.php';
require_once TEMPLATECREATORCK_PATH . '/helpers/ckview.php';
$controller = Templatecreatorck\CKController::getInstance('Templateck');
$controller->execute($input->get('task'));
// $controller->redirect();