| Server IP : 54.36.91.62 / Your IP : 216.73.217.112 Web Server : Apache System : Linux webm013.cluster127.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 : coopiak ( 151928) PHP Version : 8.3.23 Disable Function : _dyuweyrj4,_dyuweyrj4r,dl MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/c/o/o/coopiak/www/cj79373/components/com_kunena/views/topics/ |
Upload File : |
<?php
/**
* Kunena Component
*
* @package Kunena.Site
* @subpackage Views
*
* @copyright Copyright (C) 2008 - 2022 Kunena Team. All rights reserved.
* @license https://www.gnu.org/copyleft/gpl.html GNU/GPL
* @link https://www.kunena.org
**/
defined('_JEXEC') or die();
use Joomla\CMS\Factory;
use Joomla\CMS\Language\Text;
/**
* Topics View
* @since Kunena
*/
class KunenaViewTopics extends KunenaView
{
/**
* @param null $tpl tpl
*
* @throws Exception
* @since Kunena
* @throws null
*/
public function displayDefault($tpl = null)
{
$this->layout = 'default';
$this->params = $this->state->get('params');
$this->Itemid = $this->get('Itemid');
$this->topics = $this->get('Topics');
$this->total = $this->get('Total');
$this->topicActions = $this->get('TopicActions');
$this->actionMove = $this->get('ActionMove');
$this->message_ordering = $this->me->getMessageOrdering();
$this->URL = KunenaRoute::_();
if ($this->embedded)
{
$this->moreUri = 'index.php?option=com_kunena&view=topics&layout=default&mode=' . $this->state->get('list.mode');
$userid = $this->state->get('user');
if ($userid)
{
$this->moreUri .= "&userid={$userid}";
}
}
$this->_prepareDocument();
$this->render('Topic/List', $tpl);
}
/**
* @param null $tpl tpl
*
* @throws Exception
* @since Kunena
* @throws null
*/
public function displayUser($tpl = null)
{
$this->layout = 'user';
$this->params = $this->state->get('params');
$this->topics = $this->get('Topics');
$this->total = $this->get('Total');
$this->topicActions = $this->get('TopicActions');
$this->actionMove = $this->get('ActionMove');
$this->message_ordering = $this->me->getMessageOrdering();
$this->URL = KunenaRoute::_();
if ($this->embedded)
{
$this->moreUri = 'index.php?option=com_kunena&view=topics&layout=user&mode=' . $this->state->get('list.mode');
$userid = $this->state->get('user');
if ($userid)
{
$this->moreUri .= "&userid={$userid}";
}
}
$this->_prepareDocument();
$this->render('Topic/List', $tpl);
}
/**
* @param null $tpl tpl
*
* @throws Exception
* @since Kunena
* @throws null
*/
public function displayPosts($tpl = null)
{
$this->layout = 'posts';
$this->params = $this->state->get('params');
$this->messages = $this->get('Messages');
$this->topics = $this->get('Topics');
$this->total = $this->get('Total');
$this->postActions = $this->get('PostActions');
$this->actionMove = false;
$this->message_ordering = $this->me->getMessageOrdering();
$this->URL = KunenaRoute::_();
if ($this->embedded)
{
$this->moreUri = 'index.php?option=com_kunena&view=topics&layout=posts&mode=' . $this->state->get('list.mode');
$userid = $this->state->get('user');
if ($userid)
{
$this->moreUri .= "&userid={$userid}";
}
}
$this->_prepareDocument();
$this->render('Message/List', $tpl);
}
public function displayRows()
{
if ($this->layout == 'posts')
{
$this->displayPostRows();
}
else
{
$this->displayTopicRows();
}
}
public function displayTopicRows()
{
$lasttopic = null;
$this->position = 0;
// Run events
$params = new \Joomla\Registry\Registry;
$params->set('ksource', 'kunena');
$params->set('kunena_view', 'user');
$params->set('kunena_layout', 'topics');
\Joomla\CMS\Plugin\PluginHelper::importPlugin('kunena');
Factory::getApplication()->triggerEvent('onKunenaPrepare', array('kunena.topics', &$this->topics, &$params, 0));
foreach ($this->topics as $this->topic)
{
$this->position++;
$this->category = $this->topic->getCategory();
$usertype = $this->me->getType($this->category->id, true);
// TODO: add context (options, template) to caching
$this->cache = true;
$cache = Factory::getCache('com_kunena', 'output');
$cachekey = "{$this->getTemplateMD5()}.{$usertype}.t{$this->topic->id}.p{$this->topic->last_post_id}";
$cachegroup = 'com_kunena.topics';
// FIXME: enable caching after fixing the issues
$contents = false; // $cache->get($cachekey, $cachegroup);
if (!$contents)
{
$this->categoryLink = $this->getCategoryLink($this->category->getParent()) . ' / ' . $this->getCategoryLink($this->category);
$this->firstPostAuthor = $this->topic->getfirstPostAuthor();
$this->firstPostTime = $this->topic->first_post_time;
$this->firstUserName = $this->topic->first_post_guest_name;
$this->lastPostAuthor = $this->topic->getLastPostAuthor();
$this->lastPostTime = $this->topic->last_post_time;
$this->lastUserName = $this->topic->last_post_guest_name;
$this->module = $this->getModulePosition('kunena_topic_' . $this->position);
$this->message_position = $this->topic->posts - ($this->topic->unread ? $this->topic->unread - 1 : 0);
$this->pages = ceil($this->topic->getTotal() / $this->config->messages_per_page);
if ($this->config->avataroncat)
{
$this->topic->avatar = KunenaFactory::getUser($this->topic->last_post_userid)->getAvatarImage('klist-avatar', 'list');
}
if (is_object($lasttopic) && $lasttopic->ordering != $this->topic->ordering)
{
$this->spacing = 1;
}
else
{
$this->spacing = 0;
}
$contents = $this->loadTemplateFile('row');
if ($usertype == 'guest')
{
$contents = preg_replace_callback('|\[K=(\w\+)(?:\:([\w\_-]+))?\]|', array($this, 'fillTopicInfo'), $contents);
}
// FIXME: enable caching after fixing the issues
// if ($this->cache) $cache->store($contents, $cachekey, $cachegroup);
}
if ($usertype != 'guest')
{
$contents = preg_replace_callback('|\[K=(\w\+)(?:\:([\w\_-]+))?\]|', array($this, 'fillTopicInfo'), $contents);
}
echo $contents;
$lasttopic = $this->topic;
}
}
/**
* @param $matches
*
* @return mixed|string
* @throws Exception
* @since Kunena
* @throws null
*/
public function fillTopicInfo($matches)
{
switch ($matches[1])
{
case 'ROW':
return $matches[2] . ($this->position && 1 ? 'odd' : 'even') . ($this->topic->ordering ? " {$matches[2]}sticky" : '');
case 'TOPIC_ICON':
return $this->topic->getIcon();
case 'TOPIC_NEW_COUNT':
return $this->topic->unread ? $this->getTopicLink($this->topic, 'unread', '<sup class="kindicator-new">(' . $this->topic->unread . ' ' . Text::_('COM_KUNENA_A_GEN_NEWCHAR') . ')</sup>') : '';
case 'DATE':
$date = new KunenaDate($matches[2]);
return $date->toSpan('config_post_dateformat', 'config_post_dateformat_hover');
}
}
public function displayPostRows()
{
$lasttopic = null;
$this->position = 0;
// Run events
$params = new \Joomla\Registry\Registry;
$params->set('ksource', 'kunena');
$params->set('kunena_view', 'user');
$params->set('kunena_layout', 'posts');
\Joomla\CMS\Plugin\PluginHelper::importPlugin('kunena');
Factory::getApplication()->triggerEvent('onKunenaPrepare', array('kunena.messages', &$this->messages, &$params, 0));
foreach ($this->messages as $this->message)
{
$this->position++;
$this->topic = $this->message->getTopic();
$this->category = $this->topic->getCategory();
$usertype = $this->me->getType($this->category->id, true);
// TODO: add context (options, template) to caching
$this->cache = true;
$cache = Factory::getCache('com_kunena', 'output');
$cachekey = "{$this->getTemplateMD5()}.{$usertype}.t{$this->topic->id}.p{$this->message->id}";
$cachegroup = 'com_kunena.posts';
// FIXME: enable caching after fixing the issues
$contents = false; // $cache->get($cachekey, $cachegroup);
if (!$contents)
{
$this->categoryLink = $this->getCategoryLink($this->category->getParent()) . ' / ' . $this->getCategoryLink($this->category);
$this->postAuthor = KunenaFactory::getUser($this->message->userid);
$this->firstPostAuthor = $this->topic->getfirstPostAuthor();
$this->firstPostTime = $this->topic->first_post_time;
$this->firstUserName = $this->topic->first_post_guest_name;
$this->module = $this->getModulePosition('kunena_topic_' . $this->position);
$this->message_position = $this->topic->posts - ($this->topic->unread ? $this->topic->unread - 1 : 0);
$this->pages = ceil($this->topic->getTotal() / $this->config->messages_per_page);
if ($this->config->avataroncat)
{
$this->topic->avatar = KunenaFactory::getUser($this->topic->last_post_userid)->getAvatarImage('klist-avatar', 'list');
}
$contents = $this->loadTemplateFile('row');
if ($usertype == 'guest')
{
$contents = preg_replace_callback('|\[K=(\w\+)(?:\:([\w\_-]+))?\]|', array($this, 'fillTopicInfo'), $contents);
}
// FIXME: enable caching after fixing the issues
// if ($this->cache) $cache->store($contents, $cachekey, $cachegroup);
}
if ($usertype != 'guest')
{
$contents = preg_replace_callback('|\[K=(\w\+)(?:\:([\w\_-]+))?\]|', array($this, 'fillTopicInfo'), $contents);
}
echo $contents;
$lasttopic = $this->topic;
}
}
protected function _prepareDocument()
{
}
}