[ Index ]

PHP Cross Reference of Joomla 1.5.26 DE

title

Body

[close]

/administrator/templates/khepri/ -> cpanel.php (source)

   1  <?php
   2  /**
   3   * @copyright    Copyright (C) 2005 - 2010 Open Source Matters. All rights reserved.
   4   * @license        GNU/GPL, see LICENSE.php
   5   * Joomla! is free software. This version may have been modified pursuant
   6   * to the GNU General Public License, and as distributed it includes or
   7   * is derivative of works licensed under the GNU General Public License or
   8   * other free or open source software licenses.
   9   * See COPYRIGHT.php for copyright notices and details.
  10   */
  11  
  12  // no direct access
  13  defined( '_JEXEC' ) or die( 'Restricted access' );
  14  ?>
  15  <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  16  <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" >
  17  <head>
  18  <jdoc:include type="head" />
  19  
  20  <link rel="stylesheet" href="templates/system/css/system.css" type="text/css" />
  21  <link href="templates/<?php echo  $this->template ?>/css/template.css" rel="stylesheet" type="text/css" />
  22  <?php if($this->direction == 'rtl') : ?>
  23      <link href="templates/<?php echo  $this->template ?>/css/template_rtl.css" rel="stylesheet" type="text/css" />
  24  <?php endif; ?>
  25  
  26  <!--[if IE 7]>
  27  <link href="templates/<?php echo  $this->template ?>/css/ie7.css" rel="stylesheet" type="text/css" />
  28  <![endif]-->
  29  
  30  <!--[if lte IE 6]>
  31  <link href="templates/<?php echo  $this->template ?>/css/ie6.css" rel="stylesheet" type="text/css" />
  32  <![endif]-->
  33  
  34  <?php if($this->params->get('useRoundedCorners')) : ?>
  35      <link rel="stylesheet" type="text/css" href="templates/<?php echo  $this->template ?>/css/rounded.css" />
  36  <?php else : ?>
  37      <link rel="stylesheet" type="text/css" href="templates/<?php echo  $this->template ?>/css/norounded.css" />
  38  <?php endif; ?>
  39  
  40  <?php if(JModuleHelper::isEnabled('menu')) : ?>
  41      <script type="text/javascript" src="templates/<?php echo  $this->template ?>/js/menu.js"></script>
  42      <script type="text/javascript" src="templates/<?php echo  $this->template ?>/js/index.js"></script>
  43  <?php endif; ?>
  44  
  45  </head>
  46  <body id="minwidth-body">
  47      <div id="border-top" class="<?php echo $this->params->get('headerColor','green');?>">
  48          <div>
  49              <div>
  50                  <span class="version"><?php echo  JText::_('Version') ?> <?php echo  JVERSION; ?></span>
  51                  <span class="title"><?php echo $this->params->get('showSiteName') ? $mainframe->getCfg( 'sitename' ) : JText::_('Administration'); ?></span>
  52              </div>
  53          </div>
  54      </div>
  55      <div id="header-box">
  56          <div id="module-status">
  57              <jdoc:include type="modules" name="status"  />
  58          </div>
  59          <div id="module-menu">
  60              <jdoc:include type="modules" name="menu" />
  61          </div>
  62          <div class="clr"></div>
  63      </div>
  64      <div id="content-box">
  65          <div class="border">
  66              <div class="padding">
  67                  <div id="element-box">
  68                      <jdoc:include type="message" />
  69                      <div class="t">
  70                          <div class="t">
  71                              <div class="t"></div>
  72                          </div>
  73                      </div>
  74                      <div class="m" >
  75                          <table class="adminform">
  76                          <tr>
  77                              <td width="55%" valign="top">
  78                                  <jdoc:include type="modules" name="icon" />
  79                              </td>
  80                              <td width="45%" valign="top">
  81                                  <jdoc:include type="component" />
  82                              </td>
  83                          </tr>
  84                          </table>
  85                          <div class="clr"></div>
  86                      </div>
  87                      <div class="b">
  88                          <div class="b">
  89                              <div class="b"></div>
  90                          </div>
  91                      </div>
  92                  </div>
  93                  <noscript>
  94                      <?php echo  JText::_('WARNJAVASCRIPT') ?>
  95                  </noscript>
  96                  <div class="clr"></div>
  97              </div>
  98          </div>
  99      </div>
 100      <div id="border-bottom"><div><div></div></div></div>
 101      <div id="footer">
 102          <p class="copyright">
 103              <a href="http://www.joomla.org" target="_blank">Joomla!</a>
 104              <?php echo  JText::_('ISFREESOFTWARE') ?>
 105          </p>
 106      </div>
 107  </body>
 108  </html>


Generated: Wed Mar 28 15:54:07 2012 Cross-referenced by PHPXref 0.7.1