?
Path : /home/admin/public_html/old/happy2/installation1/views/license/ |
Current File : /home/admin/public_html/old/happy2/installation1/views/license/view.html.php |
<?php /** * @package Joomla.Installation * @copyright Copyright (C) 2005 - 2013 Open Source Matters, Inc. All rights reserved. * @license GNU General Public License version 2 or later; see LICENSE.txt */ defined('_JEXEC') or die; /** * The HTML Joomla Core License View * * @package Joomla.Installation * @since 1.6 */ class JInstallationViewLicense extends JViewLegacy { /** * Display the view * */ public function display($tpl = null) { $state = $this->get('State'); // Check for errors. if (count($errors = $this->get('Errors'))) { JError::raiseError(500, implode("\n", $errors)); return false; } $this->state = $state; parent::display($tpl); } }