| Server IP : 195.130.67.5 / Your IP : 216.73.217.154 Web Server : Microsoft-IIS/10.0 System : Windows NT WEBSERVER1 10.0 build 17763 (Windows Server 2016) i586 User : IUSR ( 0) PHP Version : 7.4.19 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : C:/inetpub/wwwroot/icd/components/com_jevents/controllers/ |
Upload File : |
<?php
/**
* JEvents Component for Joomla 1.5.x
*
* @version $Id: range.php 1414 2009-04-14 18:22:45Z geraint $
* @package JEvents
* @copyright Copyright (C) 2008-2009 GWE Systems 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.' );
jimport('joomla.application.component.controller');
class CrawlerController extends JController {
function __construct($config = array())
{
parent::__construct($config);
$this->registerDefaultTask( 'listevents' );
JLoader::register('JEventsDefaultView',JEV_VIEWS."/default/abstract/abstract.php");
}
function listevents() {
JRequest::setVar("tmpl","component");
list($year,$month,$day) = JEVHelper::getYMD();
// Joomla unhelpfully switched limitstart to start when sef is enabled! includes/router.php line 390
$limitstart = intval( JRequest::getVar( 'start', JRequest::getVar( 'limitstart', 0 ) ) );
global $mainframe;
$params =& JComponentHelper::getParams( JEV_COM_COMPONENT );
$limit = $params->getValue("com_calEventListRowsPpg",15);
$Itemid = JEVHelper::getItemid();
// get the view
$document =& JFactory::getDocument();
$viewType = $document->getType();
$cfg = & JEVConfig::getInstance();
$theme = "default";
$view = "crawler";
$this->addViewPath($this->_basePath.DS."views".DS.$theme);
$this->view = & $this->getView($view,$viewType, $theme,
array( 'base_path'=>$this->_basePath,
"template_path"=>$this->_basePath.DS."views".DS.$theme.DS.$view.DS.'tmpl',
"name"=>$theme.DS.$view));
// Set the layout
$this->view->setLayout('listevents');
$this->view->assign("Itemid",$Itemid);
$this->view->assign("limitstart",$limitstart);
$this->view->assign("limit",$limit);
$this->view->assign("month",$month);
$this->view->assign("day",$day);
$this->view->assign("year",$year);
$this->view->assign("task",$this->_task);
// View caching logic -- simple... are we logged in?
$cfg = & JEVConfig::getInstance();
$useCache = intval($cfg->get('com_cache', 0));
$user = &JFactory::getUser();
if ($user->get('id') || !$useCache) {
$this->view->display();
} else {
$cache =& JFactory::getCache(JEV_COM_COMPONENT, 'view');
$cache->get($this->view, 'display');
}
}
}