moodle/theme/magazine/layout/general.php
2010-08-02 19:09:55 +00:00

190 lines
5.1 KiB
PHP

<?php
$hasheading = ($PAGE->heading);
$hasnavbar = (empty($PAGE->layout_options['nonavbar']) && $PAGE->has_navbar());
$hasfooter = (empty($PAGE->layout_options['nofooter']));
$hassidepre = $PAGE->blocks->region_has_content('side-pre', $OUTPUT);
$hassidepost = $PAGE->blocks->region_has_content('side-post', $OUTPUT);
$showsidepre = $hassidepre && !$PAGE->blocks->region_completely_docked('side-pre', $OUTPUT);
$showsidepost = $hassidepost && !$PAGE->blocks->region_completely_docked('side-post', $OUTPUT);
$custommenu = $OUTPUT->custom_menu();
$hascustommenu = (empty($PAGE->layout_options['nocustommenu']) && !empty($custommenu));
$bodyclasses = array();
if ($showsidepre && !$showsidepost) {
$bodyclasses[] = 'side-pre-only';
} else if ($showsidepost && !$showsidepre) {
$bodyclasses[] = 'side-post-only';
} else if (!$showsidepost && !$showsidepre) {
$bodyclasses[] = 'content-only';
}
if ($hascustommenu) {
$bodyclasses[] = 'has_custom_menu';
}
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')?>" />
<?php echo $OUTPUT->standard_head_html() ?>
</head>
<body id="<?php echo $PAGE->bodyid ?>" class="<?php echo $PAGE->bodyclasses.' '.join(' ', $bodyclasses) ?>">
<?php echo $OUTPUT->standard_top_of_body_html() ?>
<div id="page">
<!-- start of header -->
<div id="header-wrap">
<div id="header-container">
<div id="header">
<div id="headleft">
<?php if ($hasheading && !empty($PAGE->theme->settings->logo)) {
echo $PAGE->heading;
} ?>
</div>
<div id="headright">
<?php if ($hasheading) {
echo $OUTPUT->lang_menu();
echo $OUTPUT->login_info();
echo $PAGE->headingmenu;
} ?>
</div>
</div>
</div>
</div>
<!-- end of header -->
<!-- start of logo and menu section -->
<div id="textcontainer-wrap">
<div id="textcontainer">
<?php if (!empty($PAGE->theme->settings->logo)) { ?>
<div class="thetitle">
<div class="innertitle">
</div>
</div>
<?php } else { ?>
<div id="nologo">
<a href="<?php echo $CFG->wwwroot; ?>" title="Home"><?php echo $PAGE->heading ?></a>
</div>
<?php } ?>
<div class="rightinfo">
<div id="menucontainer-wrap">
<div id="menucontainer">
<?php if ($hascustommenu) { ?>
<div id="custommenu"><?php echo $custommenu; ?></div>
<?php } ?>
</div>
</div>
</div>
</div>
</div>
<!-- end of logo and menu section -->
<!-- start of main content wraps -->
<div id="ie6-container-wrap">
<div id="outercontainer">
<div id="container">
<div id="innercontainer">
<div id="jcontrols_button">
<div class="jcontrolsleft">
<?php if ($hasnavbar) { ?>
<div class="navbar clearfix">
<div class="breadcrumb"> <?php echo $OUTPUT->navbar(); ?></div>
</div>
<?php } ?>
</div>
<div class="jcontrolsright">
<?php if ($hasnavbar) {
echo $PAGE->button;
} ?>
</div>
</div>
<!-- start OF moodle CONTENT -->
<div id="page-content">
<div id="region-main-box">
<div id="region-post-box">
<div id="region-main-wrap">
<div id="region-main">
<div class="region-content">
<?php echo core_renderer::MAIN_CONTENT_TOKEN ?>
</div>
</div>
</div>
<?php if ($hassidepre) { ?>
<div id="region-pre" class="block-region">
<div class="region-content">
<?php echo $OUTPUT->blocks_for_region('side-pre') ?>
</div>
</div>
<?php } ?>
<?php if ($hassidepost) { ?>
<div id="region-post" class="block-region">
<div class="region-content">
<?php echo $OUTPUT->blocks_for_region('side-post') ?>
</div>
</div>
<?php } ?>
</div>
</div>
</div>
<!-- END OF CONTENT -->
<div id="jcontrols_bottom">
</div>
<!-- Containers end div above clears both -->
</div>
</div>
</div>
</div>
<!-- START OF FOOTER -->
<div id="footer-wrap">
<div id="footer-container">
<div id="footer">
<?php if ($hasfooter) {
echo "<div class='johndocsleft'>";
echo $OUTPUT->login_info();
echo $OUTPUT->home_link();
echo $OUTPUT->standard_footer_html();
echo "</div>";
} ?>
<?php if ($hasfooter) { ?>
<div class="johndocs">
<?php echo page_doc_link(get_string('moodledocslink')) ?>
</div>
<?php } ?>
</div>
</div>
</div>
</div>
<?php echo $OUTPUT->standard_end_of_body_html() ?>
</body>
</html>