| 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/controllers/ |
Upload File : |
<?php
/**
* Kunena Component
*
* @package Kunena.Site
* @subpackage Controllers
*
* @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\Language\Text;
use Joomla\CMS\Session\Session;
use Joomla\Utilities\ArrayHelper;
require_once KPATH_ADMIN . '/controllers/categories.php';
/**
* Kunena Category Controller
*
* @since 2.0
*/
class KunenaControllerCategory extends KunenaAdminControllerCategories
{
/**
* @param array $config config
*
* @throws Exception
* @since Kunena
*/
public function __construct($config = array())
{
parent::__construct($config);
$this->baseurl = 'index.php?option=com_kunena&view=category&layout=manage';
$this->baseurl2 = 'index.php?option=com_kunena&view=category';
}
/**
* @throws Exception
* @since Kunena
* @throws null
*/
public function jump()
{
$catid = $this->app->input->getInt('catid', 0);
if (!$catid)
{
$this->setRedirect(KunenaRoute::_('index.php?option=com_kunena&view=category&layout=list', false));
}
else
{
$this->setRedirect(KunenaRoute::_("index.php?option=com_kunena&view=category&catid={$catid}", false));
}
}
/**
* @throws Exception
* @throws null
* @since Kunena
*/
public function markread()
{
if (!Session::checkToken('request'))
{
$this->app->enqueueMessage(Text::_('COM_KUNENA_ERROR_TOKEN'), 'error');
$this->setRedirectBack();
return;
}
$catid = $this->app->input->getInt('catid', 0);
$children = $this->app->input->getBool('children', 0);
if (!$catid)
{
// All categories
$session = KunenaFactory::getSession();
$session->markAllCategoriesRead();
if (!$session->save())
{
$this->app->enqueueMessage(Text::_('COM_KUNENA_ERROR_SESSION_SAVE_FAILED'), 'error');
}
else
{
$this->app->enqueueMessage(Text::_('COM_KUNENA_GEN_ALL_MARKED'));
}
}
else
{
// One category
$category = KunenaForumCategoryHelper::get($catid);
if (!$category->isAuthorised('read'))
{
$this->app->enqueueMessage($category->getError(), 'error');
$this->setRedirectBack();
return;
}
$session = KunenaFactory::getSession();
if ($session->userid)
{
$categories = array($category->id => $category);
if ($children)
{
// Include all levels of child categories.
$categories += $category->getChildren(-1);
}
// Mark all unread topics in selected categories as read.
KunenaForumCategoryUserHelper::markRead(array_keys($categories));
if (count($categories) > 1)
{
$this->app->enqueueMessage(Text::_('COM_KUNENA_GEN_ALL_MARKED'));
}
else
{
$this->app->enqueueMessage(Text::_('COM_KUNENA_GEN_FORUM_MARKED'));
}
}
}
$this->setRedirectBack();
}
/**
* @throws Exception
* @throws null
* @since Kunena
*/
public function subscribe()
{
if (!Session::checkToken('get'))
{
$this->app->enqueueMessage(Text::_('COM_KUNENA_ERROR_TOKEN'), 'error');
$this->setRedirectBack();
return;
}
$category = KunenaForumCategoryHelper::get($this->app->input->getInt('catid', 0));
if (!$category->isAuthorised('read'))
{
$this->app->enqueueMessage($category->getError(), 'error');
$this->setRedirectBack();
return;
}
if ($this->me->exists())
{
$success = $category->subscribe(1);
if ($success)
{
$this->app->enqueueMessage(Text::_('COM_KUNENA_GEN_CATEGORY_SUBCRIBED'));
}
}
$this->setRedirectBack();
}
/**
* @throws Exception
* @throws null
* @since Kunena
*/
public function unsubscribe()
{
if (!Session::checkToken('request'))
{
$this->app->enqueueMessage(Text::_('COM_KUNENA_ERROR_TOKEN'), 'error');
$this->setRedirectBack();
return;
}
$me = KunenaUserHelper::getMyself();
$userid = $this->app->input->getInt('userid');
$catid = $this->app->input->getInt('catid', 0);
$catids = $catid
? array($catid)
: array_keys($this->app->input->get('categories', array(), 'post', 'array'));
$catids = ArrayHelper::toInteger($catids);
$categories = KunenaForumCategoryHelper::getCategories($catids);
foreach ($categories as $category)
{
if (!$category->isAuthorised('read'))
{
$this->app->enqueueMessage($category->getError(), 'error');
continue;
}
if ($this->me->exists())
{
$success = $category->subscribe(0, $userid);
if ($success && $userid==$me->userid)
{
$this->app->enqueueMessage(Text::sprintf('COM_KUNENA_GEN_CATEGORY_NAME_UNSUBCRIBED', $category->name));
}
else
{
$this->app->enqueueMessage(Text::sprintf('COM_KUNENA_CATEGORY_NAME_MODERATOR_UNSUBCRIBED_USER', $category->name));
}
}
}
$this->setRedirectBack();
}
}