mirror of
https://github.com/moodle/moodle.git
synced 2025-08-06 01:16:44 +02:00
28 lines
568 B
HTML
Executable file
28 lines
568 B
HTML
Executable file
|
|
<?php
|
|
print_container_end(); // content container
|
|
|
|
print_container_start(true, '', 'footer');
|
|
|
|
echo '<p class="helplink">';
|
|
echo page_doc_link(get_string('moodledocslink'));
|
|
echo '</p>';
|
|
|
|
echo $loggedinas;
|
|
echo $homelink;
|
|
|
|
$useridarray = array(2, 3 // MD
|
|
);
|
|
|
|
if (!empty($performanceinfo) && isloggedin() && in_array($USER->id, $useridarray)) {
|
|
echo $performanceinfo;
|
|
}
|
|
|
|
print_container_end();
|
|
?>
|
|
</div>
|
|
<?php
|
|
include($CFG->themedir.'/colors/js/js.php');
|
|
?>
|
|
</body>
|
|
</html>
|