2003-05-15 13:55:22 +00:00
|
|
|
<html<?php echo $direction ?>>
|
|
|
|
<head>
|
2003-09-13 07:34:20 +00:00
|
|
|
<?php echo $meta ?>
|
2003-05-15 13:55:22 +00:00
|
|
|
<title><?php echo $title ?></title>
|
2003-09-21 15:32:25 +00:00
|
|
|
<meta name="keywords" content="moodle, <?php echo $title ?> " />
|
|
|
|
<link rel="stylesheet" type="text/css" href="<?php echo $styles ?>" />
|
|
|
|
<link rel="shortcut icon" href="<?php echo "$CFG->wwwroot/theme/$CFG->theme" ?>/favicon.ico" />
|
2003-05-15 13:55:22 +00:00
|
|
|
<?php include("$CFG->javascript"); ?>
|
|
|
|
</head>
|
|
|
|
|
|
|
|
<body<?php
|
2004-07-14 06:54:43 +00:00
|
|
|
echo " $bodytags";
|
2003-05-15 13:55:22 +00:00
|
|
|
if ($focus) {
|
2004-09-16 17:13:57 +00:00
|
|
|
echo " onload=\"setfocus()\"";
|
2003-05-15 13:55:22 +00:00
|
|
|
}
|
|
|
|
echo " bgcolor=\"$THEME->body\">";
|
|
|
|
?>
|
|
|
|
|
|
|
|
<?php if ($home) { // This is what gets printed on the home page only ?>
|
|
|
|
|
|
|
|
<table width="100%" cellpadding="10" cellspacing="0" border="0" class="headerhome">
|
|
|
|
<tr>
|
|
|
|
<td valign="top" class="headerhomemain"><?php echo $heading?></td>
|
|
|
|
<td align="right" valign="top" class="headerhomemenu"><?php echo $menu ?></td>
|
|
|
|
</tr>
|
|
|
|
</table>
|
|
|
|
|
|
|
|
<?php } else if ($heading) { // This is what gets printed on any other page with a heading ?>
|
|
|
|
|
|
|
|
<table width="100%" cellpadding="0" cellspacing="0" border="0" class="header">
|
|
|
|
<tr>
|
|
|
|
<td valign="top" class="headermain"><?php echo $heading?></td>
|
|
|
|
<td align="right" valign="top" class="headermenu"><?php echo $menu ?></td>
|
|
|
|
</tr>
|
|
|
|
</table>
|
|
|
|
|
|
|
|
<?php } ?>
|
|
|
|
|
|
|
|
|
|
|
|
<?php if ($navigation) { // This is the navigation table with breadcrumbs ?>
|
|
|
|
|
|
|
|
<table border="0" cellpadding="3" cellspacing="0" width="100%">
|
|
|
|
<tr>
|
|
|
|
<td bgcolor="<?php echo $THEME->cellheading?>" class="navbar">
|
|
|
|
<font size="2"><b><?php print_navigation("$navigation"); ?></b></font>
|
|
|
|
</td>
|
|
|
|
<td bgcolor="<?php echo $THEME->cellheading?>" class="navbar" align="right" width="20" valign="top"><?php
|
|
|
|
echo $button;
|
|
|
|
?></td>
|
|
|
|
</tr>
|
|
|
|
</table>
|
2003-09-21 15:32:25 +00:00
|
|
|
<img src="<?php echo $CFG->wwwroot?>/pix/spacer.gif" alt="" height="5" width="1" /><br />
|
2003-05-15 13:55:22 +00:00
|
|
|
|
|
|
|
<?php } else if ($heading) { // If no navigation, but a heading, then print a line ?>
|
|
|
|
|
2003-09-21 15:32:25 +00:00
|
|
|
<hr size="1" noshade="noshade" />
|
2003-05-15 13:55:22 +00:00
|
|
|
|
|
|
|
<?php } ?>
|
2002-09-23 15:42:22 +00:00
|
|
|
|
2002-02-26 03:50:53 +00:00
|
|
|
<!-- END OF HEADER -->
|