| 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/controller/topic/list/user/ |
Upload File : |
<?php
/**
* Kunena Component
* @package Kunena.Site
* @subpackage Controller.Topic
*
* @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 ComponentKunenaControllerTopicListUserDisplay
*
* @since K4.0
*/
class ComponentKunenaControllerTopicListUserDisplay extends ComponentKunenaControllerTopicListDisplay
{
/**
* Prepare user's topic list.
*
* @return void
*/
protected function before()
{
parent::before();
require_once KPATH_SITE . '/models/topics.php';
$this->model = new KunenaModelTopics(array(), $this->input);
$this->model->initialize($this->getOptions(), $this->getOptions()->get('embedded', false));
$this->state = $this->model->getState();
$this->me = KunenaUserHelper::getMyself();
$this->moreUri = null;
$this->embedded = $this->getOptions()->get('embedded', true);
if ($this->embedded)
{
$this->moreUri = new JUri('index.php?option=com_kunena&view=topics&layout=user&mode=' .
$this->state->get('list.mode') . '&userid=' . $this->state->get('user') . '&limit=' . $this->state->get('list.limit'));
$this->moreUri->setVar('Itemid', KunenaRoute::getItemID($this->moreUri));
}
$start = $this->state->get('list.start');
$limit = $this->state->get('list.limit');
// Handle &sel=x parameter.
$time = $this->state->get('list.time');
if ($time < 0)
{
$time = null;
}
elseif ($time == 0)
{
$time = new JDate(KunenaFactory::getSession()->lasttime);
}
else
{
$time = new JDate(JFactory::getDate()->toUnix() - ($time * 3600));
}
$user = KunenaUserHelper::get($this->state->get('user'));
// Get categories for the filter.
$categoryIds = $this->state->get('list.categories');
$reverse = !$this->state->get('list.categories.in');
$authorise = 'read';
$order = 'last_post_time';
$holding = $this->getOptions()->get('topics_deletedtopics');
if ($holding)
{
$hold = '0,2,3';
}
else
{
$hold = '0';
}
$finder = new KunenaForumTopicFinder;
$finder
->filterByMoved(false)
->filterByHold(array($hold))
->filterByTime($time);
switch ($this->state->get('list.mode'))
{
case 'posted' :
$finder
->filterByUser($user, 'posted')
->order('last_post_id', -1, 'ut');
break;
case 'started' :
$finder->filterByUser($user, 'owner');
break;
case 'favorites' :
$finder->filterByUser($user, 'favorited');
break;
case 'subscriptions' :
$finder->filterByUser($user, 'subscribed');
break;
case 'plugin':
$pluginmode = $this->state->get('list.modetype');
$dispatcher = JEventDispatcher::getInstance();
$dispatcher->trigger('onKunenaGetUserTopics', array($pluginmode, &$finder, &$order, &$categoryIds, $this));
break;
default :
$finder
->filterByUser($user, 'involved')
->order('favorite', -1, 'ut');
break;
}
if ($categoryIds !== null)
{
$categories = KunenaForumCategoryHelper::getCategories($categoryIds, $reverse, $authorise);
$finder->filterByCategories($categories);
}
$this->pagination = new KunenaPagination($finder->count(), $start, $limit);
if ($this->moreUri)
{
$this->pagination->setUri($this->moreUri);
}
$this->topics = $finder
->order($order, -1)
->start($this->pagination->limitstart)
->limit($this->pagination->limit)
->find();
if ($this->topics)
{
$this->prepareTopics();
}
$actions = array('delete', 'approve', 'undelete', 'move', 'permdelete');
switch ($this->state->get('list.mode'))
{
case 'posted' :
$this->headerText = JText::_('COM_KUNENA_VIEW_TOPICS_USERS_MODE_POSTED');
$canonicalUrl = 'index.php?option=com_kunena&view=topics&layout=user&mode=posted';
break;
case 'started' :
$this->headerText = JText::_('COM_KUNENA_VIEW_TOPICS_USERS_MODE_STARTED');
$canonicalUrl = 'index.php?option=com_kunena&view=topics&layout=user&mode=started';
break;
case 'favorites' :
$this->headerText = JText::_('COM_KUNENA_VIEW_TOPICS_USERS_MODE_FAVORITES');
$canonicalUrl = 'index.php?option=com_kunena&view=topics&layout=user&mode=favorites';
$actions = array('unfavorite');
break;
case 'subscriptions' :
$this->headerText = JText::_('COM_KUNENA_VIEW_TOPICS_USERS_MODE_SUBSCRIPTIONS');
$canonicalUrl = 'index.php?option=com_kunena&view=topics&layout=user&mode=subscriptions';
$actions = array('unsubscribe');
break;
case 'plugin' :
$this->headerText = JText::_('COM_KUNENA_VIEW_TOPICS_USERS_MODE_PLUGIN_' . strtoupper($this->state->get('list.modetype')));
$canonicalUrl = 'index.php?option=com_kunena&view=topics&layout=user&mode=plugin';
break;
default :
$this->headerText = JText::_('COM_KUNENA_VIEW_TOPICS_USERS_MODE_DEFAULT');
$canonicalUrl = 'index.php?option=com_kunena&view=topics&layout=user&mode=default';
}
$doc = JFactory::getDocument();
if (!$start)
{
foreach ($doc->_links as $key => $value)
{
if (is_array($value))
{
if (array_key_exists('relation', $value))
{
if ($value['relation'] == 'canonical')
{
$canonicalUrl = KunenaRoute::_();
$doc->_links[$canonicalUrl] = $value;
unset($doc->_links[$key]);
break;
}
}
}
}
}
$page = $this->pagination->pagesCurrent;
$pagdata = $this->pagination->getData();
if ($pagdata->previous->link)
{
$pagdata->previous->link = str_replace( '?limitstart=0', '', $pagdata->previous->link);
$doc->addHeadLink($pagdata->previous->link, 'prev');
}
if ($pagdata->next->link)
{
$doc->addHeadLink($pagdata->next->link, 'next');
}
foreach ($doc->_links as $key => $value)
{
if (is_array($value))
{
if (array_key_exists('relation', $value))
{
if ($value['relation'] == 'canonical')
{
$canonicalUrl = KunenaRoute::_();
$doc->_links[$canonicalUrl] = $value;
unset($doc->_links[$key]);
break;
}
}
}
}
$this->actions = $this->getTopicActions($this->topics, $actions);
}
}