This repository has been archived by the owner on Mar 2, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbase_footer.php
46 lines (42 loc) · 1.76 KB
/
base_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
<?php /*******************************************************************************
** Basic Analysis and Security Engine (BASE)
** Copyright (C) 2004 BASE Project Team
** Copyright (C) 2000 Carnegie Mellon University
**
** (see the file 'base_main.php' for license details)
**
** Project Lead: Kevin Johnson <[email protected]>
** Built upon work by Roman Danyliw <[email protected]>, <[email protected]>
**
** Purpose: Footer for each page
********************************************************************************
** Authors:
********************************************************************************
** Kevin Johnson <[email protected]
**
********************************************************************************
*/
if (!isset($noDisplayMenu))
{
echo "<div class='mainheadermenu'>
<table width='90%' style='border:0'>
<tr>
<td class='menuitem'>
<a class='menuitem' href='". $BASE_urlpath ."/base_ag_main.php?ag_action=list'>". _AGMAINT."</a> |
<a class='menuitem' href='". $BASE_urlpath ."/base_maintenance.php'>". _CACHE."</a> | ";
if ($Use_Auth_System == 1)
{
echo("<a class='menuitem' href='". $BASE_urlpath ."/base_user.php'>". _USERPREF ."</a> | ");
echo("<a class='menuitem' href='". $BASE_urlpath ."/base_logout.php'>". _LOGOUT ."</a> | ");
}
echo "<a class='menuitem' href='". $BASE_urlpath ."/admin/index.php'>". _ADMIN ."</a>
</td>
</tr>
</table>
</div>";
}
?>
<div class="mainfootertext">
<a class="largemenuitem" href="http://base.secureideas.net" target="_new">BASE</a> <?php echo $BASE_VERSION . _FOOTER; ?>
</div>
<br />