mirror of
https://github.com/moodle/moodle.git
synced 2025-01-20 23:18:43 +01:00
34a2777ccb
Also, part of the change from weblib.php functions to $OUTPUT-> methods. This is part of http://docs.moodle.org/en/Development:Theme_engines_for_Moodle%3F This is a big change, and the result is not perfect yet. Expect some debugging output on some pages. The main part of these changes are that $OUTPUT->header now looks for a file in the theme called layout.php, rather than header.html and footer.html. Also you can have special templates for certain pages like layout-home.php. There is fallback code for Moodle 1.9 themes, so they still work. A few of the old arguments to print_header are no longer supported. (You get an exception if you try to use them.) Sam H will be cleaning those up. All the weblib functions that have been replaced with $OUTPUT-> have version in deprecatedlib, so existing code will go on working for the foreseeable future.
46 lines
1.3 KiB
PHP
46 lines
1.3 KiB
PHP
<?php echo $OUTPUT->doctype() ?>
|
|
<html <?php echo $OUTPUT->htmlattributes() ?>>
|
|
<head>
|
|
<?php echo $OUTPUT->standard_head_html() ?>
|
|
<title><?php echo $PAGE->title ?></title>
|
|
<link rel="shortcut icon" href="<?php echo $CFG->themewww .'/'. current_theme() ?>/favicon.ico" />
|
|
<meta name="description" content="<?php echo strip_tags(format_text($SITE->summary, FORMAT_HTML)) ?>" />
|
|
</head>
|
|
<body id="<?php echo $PAGE->pagetype ?>" class="<?php echo $PAGE->bodyclasses ?>">
|
|
<?php echo $OUTPUT->standard_top_of_body_html() ?>
|
|
|
|
<div id="page">
|
|
|
|
<div id="header-home" class="clearfix">
|
|
<h1 class="headermain"><?php echo $PAGE->heading ?></h1>
|
|
<div class="headermenu"><?php
|
|
if ($menu) {
|
|
echo $menu;
|
|
} else {
|
|
echo $OUTPUT->login_info();
|
|
}
|
|
?></div>
|
|
</div>
|
|
<hr />
|
|
<!-- END OF HEADER -->
|
|
|
|
<div id="content" class="clearfix">
|
|
[MAIN CONTENT GOES HERE]
|
|
</div>
|
|
|
|
<!-- START OF FOOTER -->
|
|
<div id="footer" class="clearfix">
|
|
<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>
|
|
</div>
|
|
<?php echo $OUTPUT->standard_end_of_body_html() ?>
|
|
</body>
|
|
</html>
|