PageRenderTime 51ms CodeModel.GetById 16ms RepoModel.GetById 0ms app.codeStats 0ms

/administrator/templates/bluestork/cpanel.php

https://github.com/joebushi/joomla
PHP | 106 lines | 87 code | 11 blank | 8 comment | 6 complexity | 57879dad8fe81779e8f202586205f406 MD5 | raw file
Possible License(s): LGPL-2.1, Apache-2.0
  1. <?php
  2. /**
  3. * @version $Id$
  4. * @package Joomla.Administrator
  5. * @subpackage templates.bluestork
  6. * @copyright Copyright (C) 2005 - 2010 Open Source Matters, Inc. All rights reserved.
  7. * @license GNU General Public License version 2 or later; see LICENSE.txt
  8. */
  9. // No direct access.
  10. defined('_JEXEC') or die;
  11. $app = JFactory::getApplication();
  12. ?>
  13. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  14. <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="<?php echo $this->language; ?>" lang="<?php echo $this->language; ?>" dir="<?php echo $this->direction; ?>" id="minwidth" >
  15. <head>
  16. <jdoc:include type="head" />
  17. <link rel="stylesheet" href="templates/system/css/system.css" type="text/css" />
  18. <link href="templates/<?php echo $this->template ?>/css/template.css" rel="stylesheet" type="text/css" />
  19. <?php if ($this->direction == 'rtl') : ?>
  20. <link href="templates/<?php echo $this->template ?>/css/template_rtl.css" rel="stylesheet" type="text/css" />
  21. <?php endif; ?>
  22. <!--[if IE 7]>
  23. <link href="templates/<?php echo $this->template ?>/css/ie7.css" rel="stylesheet" type="text/css" />
  24. <![endif]-->
  25. <!--[if lte IE 6]>
  26. <link href="templates/<?php echo $this->template ?>/css/ie6.css" rel="stylesheet" type="text/css" />
  27. <![endif]-->
  28. <?php if ($this->params->get('useRoundedCorners')) : ?>
  29. <link rel="stylesheet" type="text/css" href="templates/<?php echo $this->template ?>/css/rounded.css" />
  30. <?php else : ?>
  31. <link rel="stylesheet" type="text/css" href="templates/<?php echo $this->template ?>/css/norounded.css" />
  32. <?php endif; ?>
  33. <?php if ($this->params->get('textBig')) : ?>
  34. <link rel="stylesheet" type="text/css" href="templates/<?php echo $this->template ?>/css/textbig.css" />
  35. <?php endif; ?>
  36. <?php if ($this->params->get('highContrast')) : ?>
  37. <link rel="stylesheet" type="text/css" href="templates/<?php echo $this->template ?>/css/highcontrast.css" />
  38. <?php endif; ?>
  39. </head>
  40. <body id="minwidth-body">
  41. <div id="border-top" class="h_blue">
  42. <div>
  43. <div>
  44. <span class="logo"><a href="http://www.joomla.org" target="_blank"><img src="templates/<?php echo $this->template ?>/images/logo.png" alt="Joomla!" /></a></span>
  45. <span class="title"><a href="index.php"><?php echo $this->params->get('showSiteName') ? $app->getCfg('sitename') : JText::_('Administration'); ?></a></span>
  46. </div>
  47. </div>
  48. </div>
  49. <div id="header-box">
  50. <div id="module-status">
  51. <jdoc:include type="modules" name="status" />
  52. </div>
  53. <div id="module-menu">
  54. <jdoc:include type="modules" name="menu" />
  55. </div>
  56. <div class="clr"></div>
  57. </div>
  58. <div id="content-box">
  59. <div class="border">
  60. <div class="padding">
  61. <div id="element-box">
  62. <jdoc:include type="message" />
  63. <div class="t">
  64. <div class="t">
  65. <div class="t"></div>
  66. </div>
  67. </div>
  68. <div class="m" >
  69. <div class="adminform">
  70. <div class="cpanel-left">
  71. <jdoc:include type="modules" name="icon" />
  72. </div>
  73. <div class="cpanel-right">
  74. <jdoc:include type="component" />
  75. </div>
  76. </div>
  77. <div class="clr"></div>
  78. </div>
  79. <div class="b">
  80. <div class="b">
  81. <div class="b"></div>
  82. </div>
  83. </div>
  84. </div>
  85. <noscript>
  86. <?php echo JText::_('WARNJAVASCRIPT') ?>
  87. </noscript>
  88. <div class="clr"></div>
  89. </div>
  90. </div>
  91. </div>
  92. <div id="border-bottom"><div><div></div></div></div>
  93. <jdoc:include type="modules" name="footer" style="none" />
  94. </body>
  95. </html>