?
Path : /home/admin/domains/happytokorea.net/public_html/test/installation/views/preinstall/ |
Current File : /home/admin/domains/happytokorea.net/public_html/test/installation/views/preinstall/view.html.php |
<?php /** * @package Joomla.Installation * @copyright Copyright (C) 2005 - 2012 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 Pre-Install View * * @package Joomla.Installation * @since 1.6 */ class JInstallationViewPreinstall extends JViewLegacy { /** * Display the view * * @param string * * @return void * @since 1.6 */ public function display($tpl = null) { $this->state = $this->get('State'); $this->settings = $this->get('PhpSettings'); $this->options = $this->get('PhpOptions'); $this->sufficient = $this->get('PhpOptionsSufficient'); $this->version = new JVersion; // Check for errors. if (count($errors = $this->get('Errors'))) { JError::raiseError(500, implode("\n", $errors)); return false; } parent::display($tpl); } }