-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfooter.php
More file actions
19 lines (16 loc) · 711 Bytes
/
Copy pathfooter.php
File metadata and controls
19 lines (16 loc) · 711 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<?php
if (count(get_included_files()) == 1) {header('location: http://' . $_SERVER['HTTP_HOST']); exit();}
if (!isset($GLOBALS['version_local'])) {check_version('SubMgr');}
if ($page == 'login' && isset($_SESSION['contact']['access']) && isset($access_grouping) && in_array($_SESSION['contact']['access'], $access_grouping['admin_editor'])) {$submgr_title = '<a href="documentation.html" target="_blank">Submission Manager</a>';} else {$submgr_title = 'Submission Manager';}
echo '
</td>
</tr>
</table>
<hr>
<div class="small" style="text-align: right;">
<b>' . $submgr_title . '</b><br>version ' . $GLOBALS['version_local'] . '<br>©' . $gm_year . ' Devin Emke
</div>
</body>
</html>';
output_tidy();
?>