mirror of
https://github.com/moodle/moodle.git
synced 2025-02-18 23:05:30 +01:00
25 lines
463 B
HTML
25 lines
463 B
HTML
<?php
|
|
|
|
echo $OUTPUT->container_end(); // content container
|
|
|
|
echo $OUTPUT->container_start('footer');
|
|
|
|
echo "<div id=\"footer-bar\">";
|
|
echo '<span class="helplink">';
|
|
echo ' '.page_doc_link(get_string('moodledocslink'));
|
|
echo '</span>';
|
|
echo "</div>";
|
|
|
|
echo $loggedinas;
|
|
echo $homelink;
|
|
|
|
if (!empty($performanceinfo)) {
|
|
echo $performanceinfo;
|
|
}
|
|
|
|
echo $OUTPUT->container_end();
|
|
?>
|
|
</div>
|
|
</body>
|
|
</html>
|