| 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 (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;
use Joomla\CMS\Menu\AbstractMenu;
/**
* Kunena Home Controller
*
* @since 2.0
*/
class KunenaControllerHome extends KunenaController
{
/**
* @var integer
* @since Kunena
*/
public $home = 1;
/**
* @param bool $cachable cachable
* @param bool $urlparams urlparams
*
* @return \Joomla\CMS\MVC\Controller\BaseController|void
* @since Kunena
* @throws Exception
* @throws null
*/
public function display($cachable = false, $urlparams = false)
{
$menu = $this->app->getMenu();
$home = $menu->getActive();
if (!$home)
{
Factory::getApplication()->input->get('view', 'category');
Factory::getApplication()->input->get('layout', 'list');
}
else
{
// Find default menu item
$default = $this->_getDefaultMenuItem($menu, $home);
if (!$default || $default->id == $home->id)
{
// There is no default menu item, use category view instead
$default = $menu->getItem(KunenaRoute::getItemID("index.php?option=com_kunena&view=category&layout=list"));
if ($default)
{
$default = clone $default;
$defhome = KunenaRoute::getHome($default);
if (!$defhome || $defhome->id != $home->id)
{
$default = clone $home;
}
$default->query['view'] = 'category';
$default->query['layout'] = 'list';
}
}
if (!$default)
{
throw new Exception(Text::_('COM_KUNENA_NO_ACCESS'), 500);
}
// Add query variables from shown menu item
foreach ($default->query as $var => $value)
{
Factory::getApplication()->input->get($var, $value);
}
// Remove query variables coming from the home menu item
Factory::getApplication()->input->get('defaultmenu', null);
// Set active menu item to point the real page
$menu->setActive($default->id);
}
// Reset our router
KunenaRoute::initialize();
// Run display task from our new controller
$controller = KunenaController::getInstance();
$controller->execute('display');
// Set redirect and message
$this->setRedirect($controller->getRedirect(), $controller->getMessage(), $controller->getMessageType());
}
/**
* @param AbstractMenu $menu Joomla menu.
* @param object $active Active menu item.
* @param array $visited Already visited menu items.
*
* @return null
* @since Kunena
* @throws Exception
*/
protected function _getDefaultMenuItem(AbstractMenu $menu, $active, $visited = array())
{
KunenaFactory::loadLanguage('com_kunena.controllers');
if (empty($active->query ['defaultmenu']) || $active->id == $active->query ['defaultmenu'])
{
// There is no highlighted menu item
return null;
}
$item = $menu->getItem($active->query ['defaultmenu']);
if (!$item)
{
// Menu item points to nowhere, abort
KunenaError::warning(Text::sprintf('COM_KUNENA_WARNING_MENU_NOT_EXISTS'), 'menu');
return null;
}
elseif (isset($visited[$item->id]))
{
// Menu loop detected, abort
KunenaError::warning(Text::sprintf('COM_KUNENA_WARNING_MENU_LOOP'), 'menu');
return null;
}
elseif (empty($item->component) || $item->component != 'com_kunena' || !isset($item->query ['view']))
{
// Menu item doesn't point to Kunena, abort
KunenaError::warning(Text::sprintf('COM_KUNENA_WARNING_MENU_NOT_KUNENA'), 'menu');
return null;
}
elseif ($item->query ['view'] == 'home')
{
// Menu item is pointing to another Home Page, try to find default menu item from there
$visited[$item->id] = 1;
$item = $this->_getDefaultMenuItem($menu, $item->query ['defaultmenu'], $visited);
}
return $item;
}
}