File Manager

Current Directory: /home/astoriaah/www/old15/plugins/system/shlib/shl_packages/mvc/views
Viewing File: /home/astoriaah/www/old15/plugins/system/shlib/shl_packages/mvc/views/base.php
<?php /** * Shlib - programming library * * @author Yannick Gaultier * @copyright (c) Yannick Gaultier 2013 * @package shlib * @license http://www.gnu.org/copyleft/gpl.html GNU/GPL * @version 0.2.9.370 * @date 2014-06-11 */ // Security check to ensure this file is being included by a parent file. if (!defined('_JEXEC')) die('Direct Access to this location is not allowed.'); if(version_compare(JVERSION, '3', 'ge')) { Class ShlMvcView_Base extends JViewLegacy { } } else { jimport( 'joomla.application.component.view' ); Class ShlMvcView_Base extends JView { } }