GIF89a; %PDF-1.5 %���� ºaâÚÎΞ-ÌE1ÍØÄ÷{òò2ÿ ÛÖ^ÔÀá TÎ{¦?§®¥kuµùÕ5sLOšuY
Server IP : 134.29.175.74 / Your IP : 216.73.216.160 Web Server : nginx/1.10.2 System : Windows NT CST-WEBSERVER 10.0 build 19045 (Windows 10) i586 User : Administrator ( 0) PHP Version : 7.1.0 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : C:/nginx/html/Student/JimMartinson/Lab12/Joomla/installation/template/ |
Upload File : |
<?php /** * @package Joomla.Installation * @copyright Copyright (C) 2005 - 2014 Open Source Matters, Inc. All rights reserved. * @license GNU General Public License version 2 or later; see LICENSE.txt */ defined('_JEXEC') or die; $doc = JFactory::getDocument(); // Include the component HTML helpers. JHtml::addIncludePath(JPATH_COMPONENT.'/helpers/html'); // Add Stylesheets $doc->addStyleSheet('../media/system/css/system.css'); $doc->addStyleSheet('template/css/template.css'); if ($this->direction == 'rtl') { $doc->addStyleSheet('template/css/template_rtl.css'); } // Load the JavaScript behaviors JHtml::_('behavior.framework', true); JHtml::_('behavior.keepalive'); JHtml::_('behavior.tooltip'); JHtml::_('behavior.formvalidation'); JHtml::_('script', 'installation/template/js/installation.js', true, false, false, false); // Load the JavaScript translated messages JText::script('INSTL_PROCESS_BUSY'); JText::script('INSTL_SITE_SAMPLE_LOADED'); JText::script('INSTL_FTP_SETTINGS_CORRECT'); ?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="<?php echo $this->language; ?>" lang="<?php echo $this->language; ?>" dir="<?php echo $this->direction; ?>" > <head> <jdoc:include type="head" /> <!--[if IE 7]> <link href="template/css/ie7.css" rel="stylesheet" type="text/css" /> <![endif]--> <script type="text/javascript"> window.addEvent('domready', function() { window.Install = new Installation('rightpad', '<?php echo JURI::current(); ?>'); }); </script> </head> <body> <div id="header"> <span class="logo"><a href="http://www.joomla.org" target="_blank"><img src="template/images/logo.png" alt="Joomla!" /></a></span> <h1>Joomla! <?php echo JVERSION; ?> <?php echo JText::_('INSTL_INSTALLATION') ?></h1> </div> <jdoc:include type="message" /> <div id="content-box"> <div id="content-pad"> <div id="stepbar"> <?php echo JHtml::_('installation.stepbar'); ?> <div class="box"></div> </div> <div id="warning"> <noscript> <div id="javascript-warning"> <?php echo JText::_('INSTL_WARNJAVASCRIPT'); ?> </div> </noscript> </div> <div id="right"> <div id="rightpad"> <jdoc:include type="installation" /> </div> </div> <div class="clr"></div> </div> </div> <div id="copyright"> <?php $joomla= '<a href="http://www.joomla.org">Joomla!®</a>'; echo JText::sprintf('JGLOBAL_ISFREESOFTWARE', $joomla) ?> </div> </body> </html>