%PDF- %PDF-
Direktori : /home1/lightco1/www/plugins/system/jsnframework/libraries/joomlashine/base/compat/ |
Current File : //home1/lightco1/www/plugins/system/jsnframework/libraries/joomlashine/base/compat/view_j25.php |
<?php /** * @version $Id$ * @package JSN_Framework * @author JoomlaShine Team <support@joomlashine.com> * @copyright Copyright (C) 2012 JoomlaShine.com. All Rights Reserved. * @license GNU/GPL v2 or later http://www.gnu.org/licenses/gpl-2.0.html * * Websites: http://www.joomlashine.com * Technical Support: Feedback - http://www.joomlashine.com/contact-us/get-support.html */ // No direct access to this file defined('_JEXEC') or die('Restricted access'); // Import Joomla library jimport('joomla.application.component.view'); /** * Base view class for use across JSN libraries and extensions. * * @package JSN_Framework * @since 1.1.0 */ class JSNBaseView extends JView { /** * Execute and display a template script. * * @param string $tpl The name of the template file to parse; automatically searches through the template paths. * * @return mixed Exception object if there is any failure, otherwise nothing is returned. */ public function display($tpl = null) { // Load assets // !!! NOTE: only auto-load if JSN UniForm is installed for backward compatible if (is_readable(JPATH_ROOT . '/administrator/components/com_uniform/uniform.defines.php')) { defined('JSN_UNIFORM_VERSION') OR @require_once JPATH_ROOT . '/administrator/components/com_uniform/uniform.defines.php'; if (version_compare(JSN_UNIFORM_VERSION, '1.3.0', '<=')) { ! class_exists('JSNBaseHelper') OR JSNBaseHelper::loadAssets(); } } return parent::display($tpl); } }