1
|
<?php
|
2
|
/*
|
3
|
* foot.inc
|
4
|
*
|
5
|
* part of pfSense (https://www.pfsense.org)
|
6
|
* Copyright (c) 2004-2013 BSD Perimeter
|
7
|
* Copyright (c) 2013-2016 Electric Sheep Fencing
|
8
|
* Copyright (c) 2014-2023 Rubicon Communications, LLC (Netgate)
|
9
|
* All rights reserved.
|
10
|
*
|
11
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
12
|
* you may not use this file except in compliance with the License.
|
13
|
* You may obtain a copy of the License at
|
14
|
*
|
15
|
* http://www.apache.org/licenses/LICENSE-2.0
|
16
|
*
|
17
|
* Unless required by applicable law or agreed to in writing, software
|
18
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
19
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
20
|
* See the License for the specific language governing permissions and
|
21
|
* limitations under the License.
|
22
|
*/
|
23
|
|
24
|
/*
|
25
|
* We put jquery in the footer; it is the preferred position for speed
|
26
|
* and helps developers to use events[] instead of executing scripts directly.
|
27
|
*/
|
28
|
?>
|
29
|
</div>
|
30
|
<footer class="footer">
|
31
|
<div class="container">
|
32
|
<p class="text-muted">
|
33
|
<a id="tpl" style="display: none;" href="#" title="<?=gettext('Top of page')?>"><i class="fa-regular fa-square-caret-up pull-left"></i></a>
|
34
|
<?=print_credit();?>
|
35
|
<a id="tpr" style="display: none;" href="#" title="<?=gettext('Top of page')?>"><i class="fa-regular fa-square-caret-up pull-right"></i></a>
|
36
|
</p>
|
37
|
</div>
|
38
|
</footer>
|
39
|
|
40
|
<!-- This use of filemtime() is intended to fool the browser into reloading the file (not using the cached version) if the file is changed -->
|
41
|
|
42
|
<script src="/vendor/jquery/jquery-3.7.1.min.js?v=<?=filemtime('/usr/local/www/vendor/jquery/jquery-3.7.1.min.js')?>"></script>
|
43
|
<script src="/vendor/jquery-ui/jquery-ui-1.13.2.min.js?v=<?=filemtime('/usr/local/www/vendor/jquery-ui/jquery-ui-1.13.2.min.js')?>"></script>
|
44
|
<script src="/vendor/bootstrap/js/bootstrap.min.js?v=<?=filemtime('/usr/local/www/vendor/bootstrap/js/bootstrap.min.js')?>"></script>
|
45
|
<script src="/js/pfSense.js?v=<?=filemtime('/usr/local/www/js/pfSense.js')?>"></script>
|
46
|
<script src="/js/pfSenseHelpers.js?v=<?=filemtime('/usr/local/www/js/pfSenseHelpers.js')?>"></script>
|
47
|
<script src="/js/polyfills.js?v=<?=filemtime('/usr/local/www/js/polyfills.js')?>"></script>
|
48
|
<script src="/vendor/sortable/sortable.js?v=<?=filemtime('/usr/local/www/vendor/sortable/sortable.js')?>"></script>
|
49
|
|
50
|
<script type="text/javascript" src="/vendor/jquery-treegrid/js/jquery.treegrid.min.js?v=<?=filemtime('/usr/local/www/vendor/jquery-treegrid/js/jquery.treegrid.min.js')?>"></script>
|
51
|
<script type="text/javascript" src="/vendor/js-cookie/js.cookie.js?v=<?=filemtime('/usr/local/www/vendor/js-cookie/js.cookie.js')?>"></script>
|
52
|
|
53
|
<script type="text/javascript">
|
54
|
//<![CDATA[
|
55
|
// Un-hide the "Top of page" icons if the page is larger than the window
|
56
|
if ($(document).height() > $(window).height()) {
|
57
|
$('[id^=tp]').show();
|
58
|
}
|
59
|
//]]>
|
60
|
</script>
|
61
|
</body>
|
62
|
</html>
|