forked from hjelmua/php-timeclock-with-bootsrap
-
Notifications
You must be signed in to change notification settings - Fork 0
/
footer.php
65 lines (54 loc) · 2.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
<?php
/***************************************************************************
* Copyright (C) 2006 by Ken Papizan *
* Copyright (C) 2008 by phpTimeClock Team *
* http://sourceforge.net/projects/phptimeclock *
* *
* 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. *
* *
* You should have received a copy of the GNU General Public License *
* along with this program; if not, write to the *
* Free Software Foundation, Inc., *
* 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. *
***************************************************************************/
/**
* This module will display the technology information about PhpTimeClock.
* This module will also add the ending HTML tags to make it valid HTML.
*/
echo '
</div>
<!-- /.content-wrapper -->
<!-- Main Footer -->
<footer class="main-footer">
<!-- To the right -->
<div class="pull-right hidden-xs">';
// Determine if we should add the contact E-mail to the footer
if (! empty($email) && ($email != "none")) {
echo "
<a class=footer_links href='mailto:$email'> Contact Management </a> •";
}
// Determine if the application information is set
if (empty($company_name) || empty($app_version)) {
echo "
<a class=footer_links href='https://github.com/hjelmua/php-timeclock-with-bootsrap' target='_blank'>Powered by PhpTimeClock</a>";
} else {
echo "
<a class=footer_links href='https://github.com/hjelmua/php-timeclock-with-bootsrap' target='_blank'> $company_name is Powered by PhpTimeClock $app_version</a>";
}
echo '
</div>
<!-- Default to the left -->
Powered by <a class="footer_links" href="http://nginx.org/">NGINX</a> ± <a class="footer_links" href="http://mysql.org">mysql</a> ±
<a class="footer_links" href="http://php.net"> PHP</a> • <a class="footer_links" href="https://almsaeedstudio.com">AdminLTE theme</a> ± <a class="footer_links" href="http://getbootstrap.com">Bootstrap</a>
</footer>
';
// Finish up the HTML to make it valid
?>