90723839ca
Very big theme changes, standardold theme has been split into two themes base and standard. Base theme contains only CSS that is absolutly required (e.g. layout, white space rules, specific widths) and standard (which now looks like standardwhite) contains all the frills. The following noteable changes have also been made: * Plugin CSS has been pushed back into the plugin directories as styles.css files. * Install_print_header has been corrected. * Redundant or deprecated rules have been removed. * Several minor class changes throughout Moodle. * CSS is now single line rules not multiline indented. * Installs with theme=standardold automatically switch to standard. * body classes / id now have prefixes to make it clearer what they are and avoid conflicts. Also worth noting: * There is still alot of tweaking that is required to get everything looking as it is supposed to, please be patient or better yet help out. * I am currently working on the documentation for the themes system... it will be here soon.
98 lines
3.5 KiB
PHP
98 lines
3.5 KiB
PHP
<?php
|
|
$properties = new stdClass;
|
|
$properties->sidepre = theme_enable_block_region('side-pre');
|
|
$properties->sidepost = theme_enable_block_region('side-post');
|
|
$properties->hasnavbar = false;
|
|
|
|
$bodyclasses = array();
|
|
|
|
if ($properties->sidepre && !$properties->sidepost) {
|
|
$bodyclasses[] = 'side-pre-only';
|
|
} else if ($properties->sidepost && !$properties->sidepre) {
|
|
$bodyclasses[] = 'side-post-only';
|
|
}
|
|
|
|
if (!$properties->sidepost && !$properties->sidepre) {
|
|
$bodyclasses[] = 'content-only';
|
|
}
|
|
if (empty($PAGE->layout_options['nonavbar']) && $PAGE->has_navbar()) {
|
|
$bodyclasses[] = 'hasnavbar';
|
|
$properties->hasnavbar = true;
|
|
}
|
|
|
|
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->pagetype ?>" class="<?php echo $PAGE->bodyclasses.' '.join(' ', $bodyclasses) ?>">
|
|
<?php echo $OUTPUT->standard_top_of_body_html(); ?>
|
|
<div id="page">
|
|
<div id="page-header">
|
|
<div class="rounded-corner top-left"></div>
|
|
<div class="rounded-corner top-right"></div>
|
|
<h1 class="headermain"><?php echo $PAGE->heading ?></h1>
|
|
<div class="headermenu"><?php
|
|
echo $OUTPUT->login_info();
|
|
if (!empty($PAGE->layout_options['langmenu'])) {
|
|
echo $OUTPUT->lang_menu();
|
|
}
|
|
echo $PAGE->headingmenu
|
|
?></div>
|
|
<?php if ($properties->hasnavbar) { // This is the navigation bar with breadcrumbs ?>
|
|
<div class="navbar clearfix">
|
|
<div class="breadcrumb"><?php echo $OUTPUT->navbar(); ?></div>
|
|
<div class="navbutton"><?php echo $PAGE->button; ?></div>
|
|
</div>
|
|
<?php } ?>
|
|
</div>
|
|
<div id="page-content">
|
|
<div id="regions">
|
|
<div id="regions-mask">
|
|
<div id="region-main">
|
|
<div id="region-main-mask">
|
|
<div class="region-content">
|
|
<!-- MAIN CONTENT START -->
|
|
<?php echo core_renderer::MAIN_CONTENT_TOKEN ?>
|
|
<!-- MAIN CONTENT END -->
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div id="region-pre">
|
|
<div class="region-content side-pre"><?php
|
|
if ($properties->sidepre) {
|
|
echo $OUTPUT->blocks_for_region('side-pre');
|
|
} ?>
|
|
</div>
|
|
</div>
|
|
<div id="region-post">
|
|
<div class="region-content side-post"><?php
|
|
if ($properties->sidepost) {
|
|
echo $OUTPUT->blocks_for_region('side-post');
|
|
} ?>
|
|
</div>
|
|
</div>
|
|
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<?php if (empty($PAGE->layout_options['nofooter'])) { ?>
|
|
<div id="page-footer">
|
|
<p class="helplink">
|
|
<?php echo page_doc_link(get_string('moodledocslink')) ?>
|
|
</p>
|
|
<?php
|
|
echo $OUTPUT->login_info();
|
|
echo $OUTPUT->home_link();
|
|
echo $OUTPUT->standard_footer_html();
|
|
?>
|
|
<div class="rounded-corner bottom-left"></div>
|
|
<div class="rounded-corner bottom-right"></div>
|
|
</div>
|
|
<?php } ?>
|
|
</div>
|
|
<?php echo $OUTPUT->standard_end_of_body_html() ?>
|
|
</body>
|
|
</html>
|