/administrator/templates/system/error.php

https://bitbucket.org/eternaware/joomus · PHP · 39 lines · 31 code · 1 blank · 7 comment · 1 complexity · 2d1d1877efc2021f3dad6c3a7206c51e MD5 · raw file

  1. <?php
  2. /**
  3. * @package Joomla.Administrator
  4. * @subpackage Template.system
  5. *
  6. * @copyright Copyright (C) 2005 - 2012 Open Source Matters, Inc. All rights reserved.
  7. * @license GNU General Public License version 2 or later; see LICENSE.txt
  8. */
  9. defined('_JEXEC') or die;
  10. ?>
  11. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  12. <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="<?php echo $this->language; ?>" lang="<?php echo $this->language; ?>" dir="<?php echo $this->direction; ?>" >
  13. <head>
  14. <link rel="stylesheet" href="templates/system/css/error.css" type="text/css" />
  15. </head>
  16. <body>
  17. <table width="550" align="center" class="outline">
  18. <tr>
  19. <td align="center">
  20. <h1>
  21. <?php echo $this->error->getCode() ?> - <?php echo JText::_('JERROR_AN_ERROR_HAS_OCCURRED') ?>
  22. </h1>
  23. </td>
  24. </tr>
  25. <tr>
  26. <td width="39%" align="center">
  27. <p><?php echo $this->error->getMessage(); ?></p>
  28. <p><a href="index.php"><?php echo JText::_('JGLOBAL_TPL_CPANEL_LINK_TEXT') ?></a></p>
  29. <p>
  30. <?php if ($this->debug) :
  31. echo $this->renderBacktrace();
  32. endif; ?>
  33. </p>
  34. </td>
  35. </tr>
  36. </table>
  37. </body>
  38. </html>