PageRenderTime 38ms CodeModel.GetById 12ms RepoModel.GetById 1ms app.codeStats 0ms

/installation/template/index.php

https://github.com/joebushi/joomla
PHP | 53 lines | 43 code | 4 blank | 6 comment | 2 complexity | d4e4b2cd927ce0142cf993eebd0c0baa MD5 | raw file
Possible License(s): LGPL-2.1, Apache-2.0
  1. <?php
  2. /**
  3. * @version $Id$
  4. * @package Joomla.Installation
  5. * @copyright Copyright (C) 2005 - 2010 Open Source Matters, Inc. All rights reserved.
  6. * @license GNU General Public License version 2 or later; see LICENSE.txt
  7. */
  8. defined('_JEXEC') or die;
  9. ?>
  10. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  11. <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="<?php echo $this->language; ?>" lang="<?php echo $this->language; ?>" dir="<?php echo $this->direction; ?>" >
  12. <head>
  13. <jdoc:include type="head" />
  14. <link href="template/css/template.css" rel="stylesheet" type="text/css" />
  15. <?php if ($this->direction == 'rtl') : ?>
  16. <link href="template/css/template_rtl.css" rel="stylesheet" type="text/css" />
  17. <?php endif; ?>
  18. <script type="text/javascript" src="../media/system/js/core.js"></script>
  19. <script type="text/javascript" src="../media/system/js/mootools-core.js"></script>
  20. <script type="text/javascript" src="template/js/installation.js"></script>
  21. <script type="text/javascript">
  22. window.addEvent('domready', function(){ new Accordion($$('h3.moofx-toggler'), $$('div.moofx-slider'), {onActive: function(toggler, i) { toggler.addClass('moofx-toggler-down'); },onBackground: function(toggler, i) { toggler.removeClass('moofx-toggler-down'); },duration: 300,opacity: false, alwaysHide:true, show: 1}); });
  23. </script>
  24. </head>
  25. <body>
  26. <div id="header1">
  27. <div id="header2">
  28. <div id="header3">
  29. <span class="logo"><a href="http://www.joomla.org" target="_blank"><img src="template/images/logo.png" alt="Joomla!" /></a></span>
  30. <span>Joomla! <?php echo JVERSION; ?> <?php echo JText::_('Installation') ?></span>
  31. </div>
  32. </div>
  33. </div>
  34. <jdoc:include type="message" />
  35. <div id="content-box">
  36. <div id="content-pad">
  37. <jdoc:include type="installation" />
  38. </div>
  39. </div>
  40. <div id="footer1">
  41. <div id="footer2">
  42. <div id="footer3"></div>
  43. </div>
  44. </div>
  45. <div id="copyright"><a href="http://www.joomla.org" target="_blank">Joomla</a>
  46. <?php echo JText::_('ISFREESOFTWARE') ?>
  47. </div>
  48. </body>
  49. </html>