| 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/saint-martin-lg/administrator/components/com_templateck/models/ |
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 to this file
defined('TCK_LOADED') or die('Restricted access');
use Templatecreatorck\CKModel;
use Templatecreatorck\CKFof;
class TemplateckModelFonts extends CKModel {
/**
* fonts data array
*
* @var array
*/
var $_data;
/**
* Retrieves the fonts list
* @return array Array of objects containing the data from the database
*/
function getFonts() {
// Lets load the data if it doesn't already exist
if (empty($this->_data)) {
// constructs the query
$query = ' SELECT * '
. ' FROM #__templateck_fonts';
// retrieves the data
$this->_data = CKFof::dbLoadObjectList($query);
}
return $this->_data;
}
}