PageRenderTime 51ms CodeModel.GetById 26ms RepoModel.GetById 1ms app.codeStats 0ms

/exchange/code/trunk/administrator/components/com_exchange/views/output/tmpl/default.php

https://bitbucket.org/eddieajau/the-art-of-joomla-archive
PHP | 46 lines | 16 code | 10 blank | 20 comment | 1 complexity | 218ae17a00be2efcd2c9c067ca158741 MD5 | raw file
  1. <?php
  2. /**
  3. * @version $Id: default.php 280 2010-09-18 02:14:15Z eddieajau $
  4. * @package NewLifeInIT
  5. * @subpackage com_exchange
  6. * @copyright Copyright 2005 - 2010 New Life in IT Pty Ltd. All rights reserved.
  7. * @license GNU General Public License version 2 or later.
  8. * @link http://www.theartofjoomla.com
  9. */
  10. // no direct access
  11. defined('_JEXEC') or die;
  12. JHTML::stylesheet('default.css', 'administrator/components/com_exchange/media/css/');
  13. ?>
  14. <form action="index.php" method="post" name="adminForm">
  15. <textarea rows="30" cols="80" style="width:90%" name="buffer" class="inputbox">
  16. <?php if ($this->showHeader) : ?>
  17. #
  18. # Joomla! Open Source CMS - MySQL-Dump
  19. # http://www.joomla.com
  20. #
  21. # Site: <?php echo $this->vars->siteName; ?>
  22. # Generation Time: <?php echo $this->vars->date; ?>
  23. # Server version: <?php echo $this->vars->dbVersion; ?>
  24. # PHP Version: <?php echo $this->vars->phpVersion; ?>
  25. # Database: <?php echo $this->vars->dbName;?>@<?php echo $this->vars->dbHost; ?>
  26. # <?php echo $this->vars->comment;?>
  27. # --------------------------------------------------------
  28. <?php endif;
  29. echo $this->buffer;
  30. ?>
  31. </textarea>
  32. <br />
  33. <input type="button" onclick="this.form.buffer.focus();this.form.buffer.select();" class="button" value="Select All" />
  34. <input type="hidden" name="option" value="com_exchange" />
  35. <input type="hidden" name="task" value="" />
  36. </form>