Server IP : 180.180.241.3 / Your IP : 216.73.216.252 Web Server : Microsoft-IIS/7.5 System : Windows NT NETWORK-NHRC 6.1 build 7601 (Windows Server 2008 R2 Standard Edition Service Pack 1) i586 User : IUSR ( 0) PHP Version : 5.3.28 Disable Function : NONE MySQL : ON | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : C:/AppServ/www/app/webroot/news/administrator/components/com_jevents/ |
Upload File : |
<?php /** * JEvents Component for Joomla 1.5.x * * @version $Id: jevents.php 1402 2009-04-03 13:00:38Z 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.' ); if (version_compare(phpversion(), '5.0.0', '<')===true) { echo '<div style="font:12px/1.35em arial, helvetica, sans-serif;"><div style="margin:0 0 25px 0; border-bottom:1px solid #ccc;"><h3 style="margin:0; font-size:1.7em; font-weight:normal; text-transform:none; text-align:left; color:#2f2f2f;">'.JText::_("JEV_INVALID_PHP1").'</h3></div>'.JText::_("JEV_INVALID_PHP2").'</div>'; return; } //error_reporting(E_ALL); jimport('joomla.filesystem.path'); global $option; define("JEV_COM_COMPONENT",$option); define("JEV_COMPONENT",str_replace("com_","",$option)); include_once(JPATH_COMPONENT_ADMINISTRATOR.DS.JEV_COMPONENT.".defines.php"); $lang =& JFactory::getLanguage(); $lang->load(JEV_COM_COMPONENT, JEV_ADMINPATH); $lang->load(JEV_COM_COMPONENT, JEV_PATH); // disable Zend php4 compatability mode @ini_set("zend.ze1_compatibility_mode","Off"); // Split tasl into command and task $cmd = JRequest::getCmd('task', 'cpanel.show'); if (strpos($cmd, '.') != false) { // We have a defined controller/task pair -- lets split them out list($controllerName, $task) = explode('.', $cmd); // Define the controller name and path $controllerName = strtolower($controllerName); $controllerPath = JPATH_COMPONENT.DS.'controllers'.DS.$controllerName.'.php'; $controllerName = "Admin".$controllerName; // If the controller file path exists, include it ... else lets die with a 500 error if (file_exists($controllerPath)) { require_once($controllerPath); } else { JError::raiseError(500, 'Invalid Controller'); } } else { // Base controller, just set the task $controllerName = null; $task = $cmd; } JPluginHelper::importPlugin("jevents"); // Set the name for the controller and instantiate it $controllerClass = ucfirst($controllerName).'Controller'; if (class_exists($controllerClass)) { $controller = new $controllerClass(); } else { JError::raiseError(500, 'Invalid Controller Class - '.$controllerClass ); } $config =& JFactory::getConfig(); // Perform the Request task $controller->execute($task); // Redirect if set by the controller $controller->redirect();