[ Index ]

PHP Cross Reference of Drupal 6 (gatewave)

title

Body

[close]

/sites/all/modules/admin/theme/ -> page.tpl.php (source)

   1  <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
   2  <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="<?php print $language->language ?>" lang="<?php print $language->language ?>" dir="<?php print $language->dir ?>">
   3    <head>
   4      <?php print $head ?>
   5      <?php print $styles ?>
   6      <!--[if lt IE 7]>
   7        <style type="text/css" media="screen">@import "<?php echo $base_path, $directory; ?>/ie6.css";</style>
   8      <![endif]-->
   9      <title><?php print $head_title ?></title>
  10    </head>
  11    <body class='admin <?php print $body_classes ?>'>
  12  
  13    <?php print $admin ?>
  14  
  15    <?php if ($help): ?>
  16      <div id='help' class='reverse limiter'>
  17        <div class='help-label'><?php print t('Help') ?></div>
  18        <div class='help-wrapper clear-block limiter'><?php print $help; ?></div>
  19      </div>
  20    <?php endif; ?>
  21  
  22    <div id='branding' class='clear-block reverse limiter'>
  23      <?php if ($site_name): ?><h1 class='site-name'><?php print l(truncate_utf8($site_name, 25, FALSE, TRUE), '<front>'); ?></h1><?php endif; ?>
  24      <?php if ($breadcrumb) print $breadcrumb; ?>
  25      <div class='right'>
  26        <?php if ($help): ?><?php print l(t('Need help?'), 'admin/help', array('attributes' => array('class' => 'help-toggle'))) ?><?php endif; ?>
  27        <?php if ($search_box): ?><div class="block block-theme"><?php print $search_box ?></div><?php endif; ?>
  28      </div>
  29    </div>
  30  
  31    <?php
  32      $primary_links = admin_navigation_primary();
  33      $secondary_links = admin_navigation_secondary();
  34      $primary_local_tasks = menu_primary_local_tasks();
  35      $secondary_local_tasks = menu_secondary_local_tasks();
  36    ?>
  37  
  38    <?php if ($title): ?>
  39      <div id='page-title' class='clear-block limiter reverse'>
  40        <?php if ($secondary_links): ?><?php print l(t('Expand'), $_GET['q'], array('attributes' => array('class' => 'subnav-toggle'))) ?><?php endif; ?>
  41        <h2 class='page-title'><?php print $title ?></h2>
  42        <?php if ($primary_local_tasks): ?><ul class='tabs primary'><?php print $primary_local_tasks ?></ul><?php endif; ?>
  43        <?php if (!empty($context_links)): ?><div class='tools'><?php print $context_links ?></div><?php endif; ?>
  44      </div>
  45    <?php endif; ?>
  46  
  47    <div id='page'>
  48  
  49      <?php if ($secondary_links): ?>
  50        <div id='secondary-links'><?php print theme('links', $secondary_links) ?></div>
  51      <?php endif; ?>
  52  
  53      <?php if ($secondary_local_tasks): ?><ul class='tabs secondary'><?php print $secondary_local_tasks ?></ul><?php endif; ?>
  54  
  55      <?php if ($primary_links): ?>
  56        <div id='primary-links' class='reverse clear-block'><?php print theme('links', $primary_links) ?></div>
  57      <?php endif; ?>
  58  
  59      <div id='content' class='clear-block'>
  60        <?php if ($show_messages && $messages): ?>
  61          <div id='console' class='clear-block'>
  62            <?php if ($show_messages && $messages): print $messages; endif; ?>
  63          </div>
  64        <?php endif; ?>
  65        <?php print $content ?>
  66      </div>
  67  
  68      <div id="footer">
  69        <?php print $feed_icons ?>
  70        <?php print $footer ?>
  71        <?php print $footer_message ?>
  72      </div>
  73  
  74    </div>
  75  
  76    <?php print $scripts ?>
  77    <?php print $closure ?>
  78  
  79    </body>
  80  </html>


Generated: Thu Mar 24 11:18:33 2011 Cross-referenced by PHPXref 0.7