mirror of
https://github.com/moodle/moodle.git
synced 2025-01-19 06:18:28 +01:00
6b4f1f73e9
MDL-13444 :: removed the jQuery library and use direct JavaScript instead. That's much faster. MDL-12078 :: Changed them calles from themewww to httpsthemwww (MDL-12078). MDL-13421 :: corrected left padding in admin block
42 lines
821 B
HTML
42 lines
821 B
HTML
<?php print_container_end(); ?><!-- end container Content -->
|
|
<!-- START OF FOOTER -->
|
|
<?php
|
|
|
|
global $CFG, $COURSE;
|
|
if (function_exists('is_in_popup')) {
|
|
$inpopup = is_in_popup();
|
|
} else {
|
|
$inpopup = false;
|
|
}
|
|
|
|
if (!$inpopup) {
|
|
print_container_start(false, '', 'footer');
|
|
|
|
echo '<p class="helplink">';
|
|
echo page_doc_link(get_string('moodledocslink'));
|
|
echo '</p>';
|
|
|
|
echo $loggedinas;
|
|
echo $homelink;
|
|
|
|
$useridarray = array(2 // MD
|
|
);
|
|
|
|
if (!empty($performanceinfo) && isloggedin() && in_array($USER->id, $useridarray)) {
|
|
echo $performanceinfo;
|
|
}
|
|
|
|
print_container_end();
|
|
|
|
} // end if inpopup
|
|
|
|
?>
|
|
</div> <!-- end page div -->
|
|
<script type="text/javascript">
|
|
/* <![CDATA[ */
|
|
script.init();
|
|
/* ]]> */
|
|
</script>
|
|
</body>
|
|
</html>
|