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 : /AppServ/www/app/webroot/news/components/com_jevents/views/ext/abstract/ |
Upload File : |
<?php /** * JEvents Component for Joomla 1.5.x * * @version $Id: abstract.php 1440 2009-05-11 08:22:54Z 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 */ // Check to ensure this file is included in Joomla! defined('_JEXEC') or die(); /** * HTML Abstract view class for the component frontend * * @static */ JLoader::register('JEventsDefaultView',JEV_VIEWS."/default/abstract/abstract.php"); class JEventsExtView extends JEventsDefaultView { var $jevlayout = null; function __construct($config = null) { parent::__construct($config); $this->jevlayout="ext"; $this->addHelperPath(dirname(__FILE__)."/../helpers/"); global $mainframe; $this->addHelperPath( JPATH_BASE.DS.'templates'.DS.$mainframe->getTemplate().DS.'html'.DS.JEV_COM_COMPONENT.DS."helpers"); } function viewNavTableBarIconic( $today_date, $this_date, $dates, $alts, $option, $task, $Itemid ){ $this->loadHelper("ExtViewNavTableBarIconic"); $var = new ExtViewNavTableBarIconic($this, $today_date, $this_date, $dates, $alts, $option, $task, $Itemid ); } }