/
home
/
assocoweys
/
avexp
/
components
/
com_attachments
/
legacy
/
Upload File
HOME
<?php /** * Attachments component Legacy view class compatibility * * @package Attachments * @subpackage Attachments_Component * * @copyright Copyright (C) 2011-2018 Jonathan M. Cameron, All Rights Reserved * @license http://www.gnu.org/licenses/gpl-3.0.html GNU/GPL * @link http://joomlacode.org/gf/project/attachments/frs/ * @author Jonathan M. Cameron */ // No direct access. defined('_JEXEC') or die('Restricted access'); if (!class_exists('JViewLegacy', false)) { if (version_compare(JVERSION, '3.0', 'ge')) { // Joomla 3.0 jimport('legacy.view.legacy'); } else if (version_compare(JVERSION, '2.5', 'ge')) { // Joomla 2.5 jimport( 'joomla.application.component.view' ); jimport('cms.view.legacy'); } }