| Server IP : 213.186.33.4 / Your IP : 216.73.216.193 Web Server : Apache System : Linux webm006.cluster103.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 : awebpaca ( 35430) PHP Version : 8.5.0 Disable Function : _dyuweyrj4,_dyuweyrj4r,dl MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/awebpaca/blog/components/com_kunena/template/crypsis/ |
Upload File : |
<?php
/**
* Kunena Component
*
* @package Kunena.Template.Crypsis
* @subpackage Template
*
* @copyright (C) 2008 - 2018 Kunena Team. All rights reserved.
* @license https://www.gnu.org/copyleft/gpl.html GNU/GPL
* @link https://www.kunena.org
**/
defined('_JEXEC') or die;
/**
* Crypsis template.
*
* @since K4.0
*/
class KunenaTemplateCrypsis extends KunenaTemplate
{
/**
* List of parent template names.
*
* This template will automatically search for missing files from listed parent templates.
* The feature allows you to create one base template and only override changed files.
*
* @var array
*/
protected $default = array('crypsis');
/**
* Template initialization.
*
* @return void
*/
public function initialize()
{
// Template requires Bootstrap javascript
JHtml::_('bootstrap.framework');
JHtml::_('bootstrap.tooltip', '[data-toggle="tooltip"]');
// Template also requires jQuery framework.
JHtml::_('jquery.framework');
JHtml::_('bootstrap.modal');
// Load JavaScript.
$this->addScript('assets/js/main.js');
$this->ktemplate = KunenaFactory::getTemplate();
$storage = $this->ktemplate->params->get('storage');
if ($storage)
{
$this->addScript('assets/js/localstorage.js');
}
// Compile CSS from LESS files.
$this->compileLess('assets/less/crypsis.less', 'kunena.css');
$this->addStyleSheet('kunena.css');
$filenameless = JPATH_SITE . '/components/com_kunena/template/crypsis/assets/less/custom.less';
if (file_exists($filenameless) && 0 != filesize($filenameless))
{
$this->compileLess('assets/less/custom.less', 'kunena-custom.css');
$this->addStyleSheet('kunena-custom.css');
}
$filename = JPATH_SITE . '/components/com_kunena/template/crypsis/assets/css/custom.css';
if (file_exists($filename))
{
$this->addStyleSheet('assets/css/custom.css');
}
$bootstrap = $this->ktemplate->params->get('bootstrap');
$doc = JFactory::getDocument();
if ($bootstrap)
{
$doc->addStyleSheet(JUri::base(true) . '/media/jui/css/bootstrap.min.css');
$doc->addStyleSheet(JUri::base(true). '/media/jui/css/bootstrap-extended.css');
$doc->addStyleSheet(JUri::base(true) . '/media/jui/css/bootstrap-responsive.min.css');
if ($this->ktemplate->params->get('icomoon'))
{
$doc->addStyleSheet(JUri::base(true) . '/media/jui/css/icomoon.css');
}
}
$fontawesome = $this->ktemplate->params->get('fontawesome');
if ($fontawesome)
{
$doc->addStyleSheet("https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css");
}
// Load template colors settings
$styles = <<<EOF
/* Kunena Custom CSS */
EOF;
$iconcolor = $this->ktemplate->params->get('IconColor');
if ($iconcolor)
{
$styles .= <<<EOF
.layout#kunena [class*="category"] i,
.layout#kunena .glyphicon-topic,
.layout#kunena h3 i,
.layout#kunena #kwho i.icon-users,
.layout#kunena#kstats i.icon-bars { color: {$iconcolor}; }
EOF;
}
$iconcolornew = $this->ktemplate->params->get('IconColorNew');
if ($iconcolornew)
{
$styles .= <<<EOF
.layout#kunena [class*="category"] .knewchar { color: {$iconcolornew} !important; }
.layout#kunena sup.knewchar { color: {$iconcolornew} !important; }
.layout#kunena .topic-item-unread { border-left-color: {$iconcolornew} !important;}
.layout#kunena .topic-item-unread .icon { color: {$iconcolornew} !important;}
.layout#kunena .topic-item-unread i.fa { color: {$iconcolornew} !important;}
EOF;
}
$document = JFactory::getDocument();
$document->addStyleDeclaration($styles);
parent::initialize();
}
/**
* @param $filename
* @param string $group
*
* @return JDocument
*/
public function addStyleSheet($filename, $group = 'forum')
{
$filename = $this->getFile($filename, false, '', "media/kunena/cache/{$this->name}/css");
return JFactory::getDocument()->addStyleSheet(JUri::root(true) . "/{$filename}");
}
}