mirror of
https://github.com/moodle/moodle.git
synced 2025-02-22 19:06:51 +01:00
142 lines
4.1 KiB
PHP
142 lines
4.1 KiB
PHP
<?php
|
|
|
|
$hassidepre = (empty($PAGE->layout_options['noblocks']) && $PAGE->blocks->region_has_content('side-pre', $OUTPUT));
|
|
$hasnavbar = (empty($PAGE->layout_options['nonavbar']) && $PAGE->has_navbar());
|
|
$hasfooter = (empty($PAGE->layout_options['nofooter']));
|
|
$showsidepre = ($hassidepre && !$PAGE->blocks->region_completely_docked('side-pre', $OUTPUT));
|
|
|
|
$custommenu = $OUTPUT->custom_menu();
|
|
$hascustommenu = (empty($PAGE->layout_options['nocustommenu']) && !empty($custommenu));
|
|
|
|
$bodyclasses = array();
|
|
if ($showsidepre) {
|
|
$bodyclasses[] = 'side-pre-only';
|
|
} else {
|
|
$bodyclasses[] = 'content-only';
|
|
}
|
|
|
|
if (!empty($PAGE->theme->settings->logo)) {
|
|
$logourl = $PAGE->theme->settings->logo;
|
|
} else {
|
|
$logourl = NULL;
|
|
}
|
|
|
|
if (!empty($PAGE->theme->settings->footnote)) {
|
|
$footnote = $PAGE->theme->settings->footnote;
|
|
} else {
|
|
$footnote = '<!-- There was no custom footnote set -->';
|
|
}
|
|
|
|
echo $OUTPUT->doctype() ?>
|
|
<html <?php echo $OUTPUT->htmlattributes() ?>>
|
|
<head>
|
|
<title><?php echo $PAGE->title ?></title>
|
|
<link rel="shortcut icon" href="<?php echo $OUTPUT->pix_url('favicon', 'theme')?>" />
|
|
<meta name="description" content="<?php p(strip_tags(format_text($SITE->summary, FORMAT_HTML))) ?>" />
|
|
<?php echo $OUTPUT->standard_head_html() ?>
|
|
</head>
|
|
<body id="<?php p($PAGE->bodyid) ?>" class="<?php p($PAGE->bodyclasses.' '.join(' ', $bodyclasses)) ?>">
|
|
<?php echo $OUTPUT->standard_top_of_body_html() ?>
|
|
|
|
<div id="page">
|
|
<div id="report-wrapper" class="clearfix">
|
|
|
|
<!-- START OF HEADER -->
|
|
|
|
<div id="page-header" class="clearfix">
|
|
<div id="page-header-wrapper">
|
|
<?php if($logourl == NULL) { ?>
|
|
<h1 class="headermain">
|
|
<?php echo $PAGE->heading ?>
|
|
</h1>
|
|
<?php } else { ?>
|
|
<img class="logo" src="<?php echo $logourl;?>" alt="Custom logo here" /><h1 class="headerwlogo">- <?php echo $PAGE->heading ?></h1>
|
|
<?php } ?>
|
|
|
|
<div class="headermenu">
|
|
<?php
|
|
echo $OUTPUT->login_info();
|
|
if (!empty($PAGE->layout_options['langmenu'])) {
|
|
echo $OUTPUT->lang_menu();
|
|
}
|
|
echo $PAGE->headingmenu
|
|
?>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<!-- END OF HEADER -->
|
|
|
|
<!-- START OF CONTENT -->
|
|
<?php if ($hascustommenu) { ?>
|
|
<div id="custommenu"><?php echo $custommenu; ?></div>
|
|
<?php } ?>
|
|
<div class="navbar clearfix">
|
|
<?php if ($hasnavbar) { ?>
|
|
<div class="breadcrumb"><?php echo $OUTPUT->navbar(); ?></div>
|
|
<div class="navbutton"> <?php echo $PAGE->button; ?></div>
|
|
<?php } ?>
|
|
</div>
|
|
|
|
<div id="report-page-content-wrapper">
|
|
<div id="report-page-content">
|
|
<div id="report-region-main-box">
|
|
<div id="report-region-post-box">
|
|
|
|
<div id="report-region-main">
|
|
<div class="region-content">
|
|
<?php echo $OUTPUT->main_content() ?>
|
|
</div>
|
|
</div>
|
|
|
|
<?php if ($hassidepre) { ?>
|
|
<div id="report-region-pre" class="block-region">
|
|
<div class="region-content">
|
|
<?php echo $OUTPUT->blocks_for_region('side-pre') ?>
|
|
</div>
|
|
</div>
|
|
<?php } ?>
|
|
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<!-- END OF CONTENT -->
|
|
|
|
</div>
|
|
|
|
<!-- END OF WRAPPER -->
|
|
|
|
<!-- START OF FOOTER -->
|
|
<?php if ($hasfooter) { ?>
|
|
<div id="page-footer">
|
|
|
|
<!-- START OF FOOTER-INNER -->
|
|
|
|
<div id="page-footer-inner">
|
|
<div class="footnote"><?php echo $footnote; ?></div>
|
|
<?php
|
|
echo $OUTPUT->login_info();
|
|
?>
|
|
</div>
|
|
|
|
<!-- END OF FOOTER-INNER -->
|
|
|
|
<p class="helplink"><?php echo page_doc_link(get_string('moodledocslink')); ?></p>
|
|
<?php echo $OUTPUT->home_link(); ?>
|
|
<?php echo $OUTPUT->standard_footer_html(); ?>
|
|
|
|
|
|
</div>
|
|
<?php } ?>
|
|
|
|
<!-- END OF FOOTER -->
|
|
|
|
</div>
|
|
|
|
<!-- END OF PAGE -->
|
|
<?php echo $OUTPUT->standard_end_of_body_html() ?>
|
|
</body>
|
|
</html>
|