uawdijnntqw1x1x1
IP : 216.73.216.198
Hostname : webm002.cluster123.gra.hosting.ovh.net
Kernel : Linux webm002.cluster123.gra.hosting.ovh.net 5.15.206-ovh-vps-grsec-zfs-classid #1 SMP Fri May 15 02:41:25 UTC 2026 x86_64
Disable Function : _dyuweyrj4,_dyuweyrj4r,dl
OS : Linux
PATH:
/
home
/
megadansyp
/
www
/
eace8
/
..
/
cli
/
..
/
components
/
com_jevents
/
controllers
/
list.php
/
/
<?php /** * JEvents Component for Joomla! 3.x * * @version $Id: range.php 3549 2012-04-20 09:26:21Z geraintedwards $ * @package JEvents * @copyright Copyright (C) 2008-2025 GWESystems Ltd * @license GNU/GPLv2, see http://www.gnu.org/licenses/gpl-2.0.html * @link http://www.jevents.net */ defined('JPATH_BASE') or die('Direct Access to this location is not allowed.'); use Joomla\CMS\Filesystem\Folder; use Joomla\CMS\Factory; use Joomla\CMS\Component\ComponentHelper; use Joomla\CMS\Uri\Uri; jimport('joomla.application.component.controller'); #[\AllowDynamicProperties] class ListController extends Joomla\CMS\MVC\Controller\BaseController { function __construct($config = array()) { parent::__construct($config); // TODO get this from config $this->registerDefaultTask('events'); // Load abstract "view" class $cfg = JEVConfig::getInstance(); $theme = JEV_CommonFunctions::getJEventsViewName(); JLoader::register('JEvents' . ucfirst($theme) . 'View', JEV_VIEWS . "/$theme/abstract/abstract.php"); if (!isset($this->_basePath)) { $this->_basePath = $this->basePath; $this->_task = $this->task; } } function events() { list($year, $month, $day) = JEVHelper::getYMD(); $input = Factory::getApplication()->input; // Joomla unhelpfully switched limitstart to start when sef is enabled! includes/router.php line 390 $limitstart = intval($input->getInt('start', $input->getInt('limitstart', 0))); $params = ComponentHelper::getParams(JEV_COM_COMPONENT); $limit = intval(Factory::getApplication()->getUserStateFromRequest('jevlistlimit.list', 'limit', $params->get("com_calEventListRowsPpg", 15))); $Itemid = JEVHelper::getItemid(); // get the view $document = Factory::getDocument(); $viewType = $document->getType(); $cfg = JEVConfig::getInstance(); $theme = JEV_CommonFunctions::getJEventsViewName(); if (!Folder::exists($this->_basePath . '/' . "views" . '/' . $theme . "/list")) { $theme = "default"; } $view = "list"; $this->addViewPath($this->_basePath . '/' . "views" . '/' . $theme); $this->view = $this->getView($view, $viewType, $theme . "View", array('base_path' => $this->_basePath, "template_path" => $this->_basePath . '/' . "views" . '/' . $theme . '/' . $view . '/' . 'tmpl', "name" => $theme . '/' . $view)); // Set the layout $this->view->setLayout('events'); if ($params->get("csvexport", 0)) { $input = Factory::getApplication()->input; $limit = $input->getInt("limit", 0); $limitstart = 0; if ( $limit < 1000) { $uri = Uri::getInstance(); $uri->setVar("limit", 99999); $limit = 99999; } } $this->view->Itemid = $Itemid; $this->view->limitstart = $limitstart; $this->view->limit = $limit; $this->view->month = $month; $this->view->day = $day; $this->view->year = $year; $this->view->task = $this->_task; // View caching logic -- simple... are we logged in? $cfg = JEVConfig::getInstance(); $joomlaconf = Factory::getConfig(); $useCache = intval($cfg->get('com_cache', 0)) && $joomlaconf->get('caching', 1); $user = Factory::getUser(); if ($user->get('id') || !$useCache) { $this->view->display(); } else { $cache = Factory::getCache(JEV_COM_COMPONENT, 'view'); $cache->get($this->view, 'display'); } } }
/home/megadansyp/www/eace8/../cli/../components/com_jevents/controllers/list.php