-
Notifications
You must be signed in to change notification settings - Fork 0
/
footer.php
113 lines (101 loc) · 3.98 KB
/
footer.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
<?php
///////////////////////////////////////////////////////////////////////////
// //
// NOTICE OF COPYRIGHT //
// //
// MoodleWatcher Audit Report: Moodle Quiz Fraud Detector //
// //
// Copyright (C) 2011 onwards Rodolfo Matos //
// //
// <[email protected]> //
// //
// This program is free software; you can redistribute it and/or modify //
// it under the terms of the GNU General Public License as published by //
// the Free Software Foundation; either version 2 of the License, or //
// (at your option) any later version. //
// //
// This program is distributed in the hope that it will be useful, //
// but WITHOUT ANY WARRANTY; without even the implied warranty of //
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the //
// GNU General Public License for more details: //
// //
// http://www.gnu.org/copyleft/gpl.html //
// //
///////////////////////////////////////////////////////////////////////////
// Bibliotecas do MoodleWatcher
require_once('lib/lib.php');
?>
<div id="push"></div>
<hr>
<footer>
<div class="row">
<div class="col-md-8"><img src="img/UPdigital.png"></div>
<div class="col-md-4 text-right"><img align="top-right" src="img/misc/geek_to_the_bone.png"><span class="glyphicon glyphicon-copyright-mark"></span></div>
</div>
<div class="row">
<div class="col-md-8 text-left">
</div>
<div class="col-md-4 text-right">
<strong><?php moodlewatcherversion(); ?></strong>
<small><?php print "<br>Current Time: ".date('d/m/Y-H:i', now()); ?></small>
<br>
<small>
<?php print 'Used '.getVirtualMemoryTaken().'% of total memory'; ?>
</small>
</div>
</div>
<div class="row">
<div class="col-md-12"><hr></div>
</div>
</footer>
</div> <!-- /container -->
<!-- back2top (start) -->
<span id="top-link-block" class="hidden">
<a href="#top" class="well well-sm" onclick="$('html,body').animate({scrollTop:0},'slow');return false;">
<i class="glyphicon glyphicon-chevron-up"></i> Voltar ao topo
</a>
</span><!-- /top-link-block -->
<!-- back2top (end) -->
<?php
//------------------------------
// DEBUG (start)
debugging_system();
// DEBUG (end)
//------------------------------
?>
</div> <!-- /wrap -->
<?php
//-----------------------------
?>
<!-- Le javascript
================================================== -->
<!-- Placed at the end of the document so the pages load faster -->
<!-- <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script> -->
<!-- <script src="js/jquery.min.js"></script> -->
<script src="js/bootstrap.js"></script>
<script src="js/back2top.js"></script>
<script src="js/typeahead.min.js"></script>
<script>
$(document).ready(function(){
$('input.typeahead').typeahead({
name: 'typeahead',
remote:'search.php?key=%QUERY',
limit : 20
});
});
</script>
<script src="src/jquery.table2excel.js"></script>
<script>
$(function() {
$("#export2excel").click(function(){
$("#table2excel").table2excel({
exclude: ".noExl",
name: "Excel Document Name"
});
});
});
</script>
<!-- IE10 viewport hack for Surface/desktop Windows 8 bug -->
<script src="js/ie10-viewport-bug-workaround.js"></script>
</body>
</html>