| 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/libraries/kunena/module/ |
Upload File : |
<?php
/**
* Kunena Component
* @package Kunena.Framework
* @subpackage Module
*
* @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();
/**
* Class KunenaModule
*/
abstract class KunenaModule
{
/**
* CSS file to be loaded.
* @var string
*/
static protected $css = null;
/**
* @var stdClass
*/
protected $module = null;
/**
* @var JRegistry
*/
protected $params = null;
/**
* @param stdClass $module
* @param JRegistry $params
*/
public function __construct($module, $params)
{
$this->module = $module;
$this->params = $params;
$this->document = JFactory::getDocument();
}
/**
* Internal module function to display module contents.
*/
abstract protected function _display();
/**
* Display module contents.
*/
final public function display()
{
// Load CSS only once
if (static::$css)
{
$this->document->addStyleSheet(JURI::root(true) . static::$css);
static::$css = null;
}
// Use caching also for registered users if enabled.
if ($this->params->get('owncache', 0))
{
// @var $cache JCacheControllerOutput
$cache = JFactory::getCache('com_kunena', 'output');
$me = KunenaFactory::getUser();
$cache->setLifeTime($this->params->get('cache_time', 180));
$hash = md5(serialize($this->params));
if ($cache->start("display.{$me->userid}.{$hash}", 'mod_kunenalatest'))
{
return;
}
}
// Initialize Kunena.
KunenaForum::setup();
// Display module.
$this->_display();
// Store cached page.
if (isset($cache))
{
$cache->end();
}
}
}