advanced-help-popup.tpl.php in Advanced Help 6
Same filename and directory in other branches
Default theme implementation to display a help popup.
3 theme calls to advanced-help-popup.tpl.php
- advanced_help_index_page in ./
advanced_help.module  - Page callback to view the advanced help topic index.
 - advanced_help_search_view in ./
advanced_help.module  - Page callback for advanced help search.
 - advanced_help_topic_page in ./
advanced_help.module  - Page callback to view a help topic.
 
File
advanced-help-popup.tpl.phpView source
<?php
/**
 * @file
 * Default theme implementation to display a help popup.
 */
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
  "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="<?php
print $language->language;
?>" lang="<?php
print $language->language;
?>" dir="<?php
print $language->dir;
?>">
<head>
  <title><?php
print $title;
?></title>
  <?php
print $head;
?>
  <?php
print $styles;
?>
  <?php
print $scripts;
?>
  <script type="text/javascript"><?php
/* Needed to avoid Flash of Unstyled Content in IE */
?> </script>
</head>
<body class="advanced-help-popup-body">
  <div id="page">
    <div id="header">
      <?php
if (!empty($search_box)) {
  ?>
        <div id="search-box"><?php
  print $search_box;
  ?></div>
      <?php
}
?>
    </div> <!-- /header -->
    <div id="breadcrumb"><?php
print $breadcrumb;
?></div>
    <div id="content">
      <?php
if (!empty($title)) {
  ?><h1 class="title" id="page-title"><?php
  print $title;
  ?></h1><?php
}
?>
      <?php
if (!empty($tabs)) {
  ?><div class="tabs"><?php
  print $tabs;
  ?></div><?php
}
?>
      <?php
if (!empty($messages)) {
  print $messages;
}
?>
      <?php
if (!empty($help)) {
  print $help;
}
?>
      <div id="content-content" class="clear-block">
        <?php
print $content;
?>
      </div> <!-- /content-content -->
    </div> <!-- /content -->
    <?php
print $closure;
?>
  </div> <!-- /page -->
</body>
</html>