advanced-help-popup.tpl.php in Advanced Help 7
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>
<head>
<title><?php
print $head_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 -->
<!--
See comment about $closure in main module.
print $closure;
-->
</div> <!-- /page -->
</body>
</html>