| Server IP : 46.105.57.169 / Your IP : 216.73.216.144 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/maitricfuz/www/new-saint-martin/administrator/components/com_templateck/controllers/ |
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('TCK_LOADED') or die;
use Templatecreatorck\CKController;
/**
* Templates list controller class.
*/
class TemplateckControllerFonts extends CKController {
/**
* Proxy for getModel.
* @since 1.6
*/
public function getModel($name = 'Font', $prefix = 'TemplateckModel', $config = Array()) {
$model = parent::getModel($name, $prefix, array('ignore_request' => true));
return $model;
}
/**
* display input form to select a zip file
* @return void
*/
public function installTheme() {
$this->input->set('view', 'fonts');
$this->input->set('layout', 'install');
parent::display();
}
}