Project

General

Profile

Download (15.2 KB) Statistics
| Branch: | Tag: | Revision:
1 ff9d6728 Scott Ullrich
2
<script src="/javascript/sorttable.js"></script>
3
4 c6c150e9 Scott Ullrich
<?php
5 7ac5a4cb Scott Ullrich
/*
6
	pfSense_MODULE:	header
7
*/
8 f0394bbb Scott Ullrich
9 705a4137 Ermal Luçi
require_once("globals.inc");
10 b8f82cd7 Scott Ullrich
require_once("functions.inc");
11 7ac5a4cb Scott Ullrich
12 b46bfcf5 Bill Marquette
/* $Id$ */
13 e86a8e57 Scott Ullrich
14 0a3eaf4d jim-p
15
/* Determine automated help URL. Should output the page name and
16
   parameters separately */
17
$uri_split = "";
18
preg_match("/\/(.*)\?(.*)/", $_SERVER["REQUEST_URI"], $uri_split);
19
20
/* If there was no match, there were no parameters, just grab the filename
21
   Otherwise, use the matched filename from above. */
22
if (empty($uri_split[0])) {
23
	$pagename = ltrim($_SERVER["REQUEST_URI"], '/');
24
} else {
25
	$pagename = $uri_split[1];
26
}
27
/* If the page name is still empty, the user must have requested / (index.php) */
28
if (empty($pagename)) {
29
	$pagename = "index.php";
30
}
31
32
/* If the filename is pkg_edit.php or wizard.php, reparse looking
33
	for the .xml filename */
34 b873ded5 jim-p
if (($pagename == "pkg.php") || ($pagename == "pkg_edit.php") || ($pagename == "wizard.php")) {
35 0a3eaf4d jim-p
	$param_split = explode('&', $uri_split[2]);
36
	foreach ($param_split as $param) {
37
		if (substr($param, 0, 4) == "xml=") {
38
			$xmlfile = explode('=', $param);
39
			$pagename = $xmlfile[1];
40
		}
41
	}
42
}
43
44
/* Build the full help URL. */
45
$helpurl .= "{$g['help_base_url']}?page={$pagename}";
46
47 e93441e0 Scott Ullrich
function return_ext_menu($section) {
48
	global $config;
49
	$htmltext = "";
50 5e3249f0 Scott Ullrich
	$extarray = array();
51 e93441e0 Scott Ullrich
	if($config['installedpackages']['menu'] <> "") {
52
		foreach($config['installedpackages']['menu'] as $menuitem) {
53
			if($menuitem['section'] != $section) continue;
54
			if($menuitem['url'] <> "") {
55
			 	$addresswithport = getenv("HTTP_HOST");
56
				$colonpos = strpos($addresswithport, ":");
57
				if ($colonpos !== False){
58
					//my url is actually just the IP address of the pfsense box
59
					$myurl = substr($addresswithport, 0, $colonpos);
60 c987ed88 Scott Ullrich
				} else {
61 e93441e0 Scott Ullrich
					$myurl = $addresswithport;
62 90e3bbc0 Colin Smith
				}
63 2c7bc9d0 jim-p
				$description = str_replace('$myurl', $myurl, $menuitem['url']);
64 e93441e0 Scott Ullrich
			} else {
65
				$description = '/pkg.php?xml=' . $menuitem['configfile'];
66 c6c150e9 Scott Ullrich
			}
67 5e3249f0 Scott Ullrich
			$extarray[] = array($menuitem['name'], $description);
68 c6c150e9 Scott Ullrich
		}
69
	}
70 5e3249f0 Scott Ullrich
	return $extarray;
71 e93441e0 Scott Ullrich
}
72 65384707 Erik Kristensen
73 471ce716 Scott Ullrich
function output_menu($arrayitem, $target="") {
74 5e3249f0 Scott Ullrich
	foreach($arrayitem as $item) {
75 471ce716 Scott Ullrich
		if($target)
76
			$targetinfo = "target='{$target}'";
77 96372523 thompsa
		echo '<li><a ' . $targetinfo. ' href="' . $item[1] . '" class="navlnk">' . $item[0] . '</a></li>' . "\n";
78 5e3249f0 Scott Ullrich
	}
79
}
80
81
// System
82 5ba2df71 Scott Ullrich
$system_menu = array();
83
$system_menu[] = array("Advanced", "/system_advanced_admin.php");
84
$system_menu[] = array("Firmware", "/system_firmware.php");
85
$system_menu[] = array("General Setup", "/system.php");
86
$system_menu[] = array("Logout", "/index.php?logout");
87 5e3249f0 Scott Ullrich
if ($g['platform'] == "pfSense" or $g['platform'] == "nanobsd")
88 5ac70f13 Scott Ullrich
	$system_menu[] = array("Packages", "/pkg_mgr_installed.php");
89 5ba2df71 Scott Ullrich
$system_menu[] = array("Setup Wizard", "/wizard.php?xml=setup_wizard.xml");
90
$system_menu[] = array("Routing", "/system_gateways.php");
91
$system_menu[] = array("Cert Manager", "/system_camanager.php");
92
$system_menu[] = array("User Manager", "/system_usermanager.php");
93
$system_menu = msort(array_merge($system_menu, return_ext_menu("System")),0);
94 5e3249f0 Scott Ullrich
95
// Interfaces
96 5ba2df71 Scott Ullrich
$interfaces_menu = array();
97 5e3249f0 Scott Ullrich
if (!isset($config['system']['webgui']['noassigninterfaces']))
98 5ba2df71 Scott Ullrich
	$interfaces_menu[] = array("(assign)", "/interfaces_assign.php");
99 5e3249f0 Scott Ullrich
$opts = get_configured_interface_with_descr(false, true);
100
foreach ($opts as $oif => $odescr)
101
	if (!isset($config['interfaces'][$oif]['ovpn']))
102 5ba2df71 Scott Ullrich
		$interfaces_menu[] = array(htmlspecialchars($odescr), "/interfaces.php?if={$oif}");
103
$interfaces_menu = msort(array_merge($interfaces_menu, return_ext_menu("Interfaces")),0);
104 5e3249f0 Scott Ullrich
105
// Firewall
106 5ba2df71 Scott Ullrich
$firewall_menu = array();
107
$firewall_menu[] = array("Aliases", "/firewall_aliases.php");
108 0d5c9be1 Chris Buechler
$firewall_menu[] = array("NAT", "/firewall_nat.php");
109 5ba2df71 Scott Ullrich
$firewall_menu[] = array("Rules", "/firewall_rules.php");
110
$firewall_menu[] = array("Schedules", "/firewall_schedule.php");
111 38b357bd Ermal
$firewall_menu[] = array("Traffic Shaper", "/firewall_shaper.php");
112 5ba2df71 Scott Ullrich
$firewall_menu[] = array("Virtual IPs", "/firewall_virtual_ip.php");
113
$firewall_menu = msort(array_merge($firewall_menu, return_ext_menu("Firewall")),0);
114 5e3249f0 Scott Ullrich
115
// Services
116 5ba2df71 Scott Ullrich
$services_menu = array();
117
$services_menu[] = array("Captive Portal", "/services_captiveportal.php");
118
$services_menu[] = array("DNS Forwarder", "/services_dnsmasq.php");
119
$services_menu[] = array("DHCP Relay", "/services_dhcp_relay.php");
120 5e3249f0 Scott Ullrich
if($g['services_dhcp_server_enable'])
121 5ba2df71 Scott Ullrich
	$services_menu[] = array("DHCP Server", "/services_dhcp.php");
122
$services_menu[] = array("Dynamic DNS", "/services_dyndns.php");
123
$services_menu[] = array("IGMP proxy", "/services_igmpproxy.php");
124 3e2165b6 jim-p
$services_menu[] = array("Load Balancer", "/load_balancer_pool.php");
125 5ba2df71 Scott Ullrich
$services_menu[] = array("OLSR", "/pkg_edit.php?xml=olsrd.xml&id=0");
126
$services_menu[] = array("PPPoE Server", "/vpn_pppoe.php");
127
$services_menu[] = array("RIP", "/pkg_edit.php?xml=routed/routed.xml&id=0");
128
$services_menu[] = array("SNMP", "/services_snmp.php");
129 38b357bd Ermal
if(count($config['interfaces']) > 1) {
130 5e3249f0 Scott Ullrich
	/* no use for UPnP in single-interface deployments
131
	remove to reduce user confusion
132
	*/
133 93b2c459 jim-p
	$services_menu[] = array("UPnP &amp; NAT-PMP", "/pkg_edit.php?xml=miniupnpd.xml&id=0");
134 5e3249f0 Scott Ullrich
}
135 5ba2df71 Scott Ullrich
$services_menu[] = array("OpenNTPD", "/pkg_edit.php?xml=openntpd.xml&id=0");
136
$services_menu[] = array("Wake on LAN", "/services_wol.php");
137
$services_menu = msort(array_merge($services_menu, return_ext_menu("Services")),0);
138 5e3249f0 Scott Ullrich
139
// VPN
140 5ba2df71 Scott Ullrich
$vpn_menu = array();
141
$vpn_menu[] = array("IPsec", "/vpn_ipsec.php");
142
$vpn_menu[] = array("OpenVPN", "/vpn_openvpn_server.php");
143
$vpn_menu[] = array("PPTP", "/vpn_pptp.php");
144
$vpn_menu[] = array("L2TP", "/vpn_l2tp.php");
145
$vpn_menu = msort(array_merge($vpn_menu, return_ext_menu("VPN")),0);
146 5e3249f0 Scott Ullrich
147
// Status
148
$status_menu = array();
149
if (isset($config['captiveportal']['enable']))
150
	$status_menu[] = array("Captive Portal", "/status_captiveportal.php");
151
$status_menu[] = array("CARP (failover)", "/carp_status.php");
152
$status_menu[] = array("Dashboard", "/index.php");
153
$status_menu[] = array("Gateways", "/status_gateways.php");
154 b9546722 Chris Buechler
$status_menu[] = array("DHCP Leases", "/status_dhcp_leases.php");
155 5e3249f0 Scott Ullrich
$status_menu[] = array("Filter Reload", "/status_filter_reload.php");
156
$status_menu[] = array("Interfaces", "/status_interfaces.php");
157
$status_menu[] = array("IPsec", "/diag_ipsec.php");
158 477dcf13 Chris Buechler
$status_menu[] = array("Load Balancer", "/status_lb_pool.php");
159 5e3249f0 Scott Ullrich
$status_menu[] = array("OpenVPN", "/status_openvpn.php");
160
if ($g['platform'] == "pfSense")
161
	$status_menu[] = array("Package Logs", "/diag_pkglogs.php");
162
$status_menu[] = array("Queues", "/status_queues.php");
163
$status_menu[] = array("RRD Graphs", "/status_rrd_graph.php");
164
$status_menu[] = array("Services", "/status_services.php");
165
$status_menu[] = array("System Logs", "/diag_logs.php");
166
$status_menu[] = array("Traffic Graph", "/status_graph.php?if=wan");
167 38b357bd Ermal
if(count($config['interfaces']) > 1) 
168 93b2c459 jim-p
	$status_menu[] = array("UPnP &amp; NAT-PMP", "/status_upnp.php");
169 5e3249f0 Scott Ullrich
$ifentries = get_configured_interface_with_descr();
170
foreach ($ifentries as $ent => $entdesc) {
171
	if (is_array($config['interfaces'][$ent]['wireless']) &&
172
		preg_match($g['wireless_regex'], $config['interfaces'][$ent]['if']))
173
		$ifdescrs[$ent] = $entdesc;
174
}
175
if (count($ifdescrs) > 0)
176
	$status_menu[] = array("Wireless", "/status_wireless.php");
177
$status_menu = msort(array_merge($status_menu, return_ext_menu("Status")),0);
178
179
// Diagnostics
180 5ba2df71 Scott Ullrich
$diagnostics_menu = array();
181
$diagnostics_menu[] = array("ARP Tables", "/diag_arp.php");
182 3f0357fc Ermal Lu?i
$diagnostics_menu[] = array("Authentication", "/diag_authentication.php");
183 5ba2df71 Scott Ullrich
$diagnostics_menu[] = array("Backup/Restore", "/diag_backup.php");
184
$diagnostics_menu[] = array("Command Prompt", "/exec.php");
185
$diagnostics_menu[] = array("DNS Lookup", "/diag_dns.php");
186
$diagnostics_menu[] = array("Edit File", "/edit.php");
187
$diagnostics_menu[] = array("Factory Defaults", "/diag_defaults.php");
188
$diagnostics_menu[] = array("Halt System", "/halt.php" );
189 7afae53f Scott Ullrich
$diagnostics_menu[] = array("Overload tables", "/diag_overload_tables.php");
190 5ba2df71 Scott Ullrich
$diagnostics_menu[] = array("Ping", "/diag_ping.php");
191
$diagnostics_menu[] = array("pfTOP", "/diag_system_pftop.php");
192
$diagnostics_menu[] = array("Reboot", "/reboot.php");
193
$diagnostics_menu[] = array("Routes", "/diag_routes.php");
194
$diagnostics_menu[] = array("Show Bogons", "/diag_showbogons.php");
195 21f0f60d jim-p
$diagnostics_menu[] = array("SMART Status", "/diag_smart.php");
196 5ba2df71 Scott Ullrich
$diagnostics_menu[] = array("States", "/diag_dump_states.php");
197 9d71da81 jim-p
$diagnostics_menu[] = array("States Summary", "/diag_states_summary.php");
198 5ba2df71 Scott Ullrich
$diagnostics_menu[] = array("System Activity", "/diag_system_activity.php");
199
$diagnostics_menu[] = array("Traceroute", "/diag_traceroute.php");
200
$diagnostics_menu[] = array("Packet Capture", "/diag_packet_capture.php");
201 5e3249f0 Scott Ullrich
if($g['platform'] == "nanobsd")
202 9f9e4be1 jim-p
	$diagnostics_menu[] = array("NanoBSD", "/diag_nanobsd.php");
203 5e3249f0 Scott Ullrich
204
if (isset($config['system']['developer'])) {
205
	echo "<li><hr width=\"80%\"/></li>";
206 9f9e4be1 jim-p
	$diagnostics_menu[] = array("Restart HTTPD", "/restart_httpd.php");
207 5e3249f0 Scott Ullrich
}
208 5ba2df71 Scott Ullrich
$diagnostics_menu = msort(array_merge($diagnostics_menu, return_ext_menu("Diagnostics")),0);
209 5e3249f0 Scott Ullrich
210 3b29612f Chris Buechler
if(! $g['disablehelpmenu']) {
211
	$help_menu = array();
212
	$help_menu[] = array("About this Page", $helpurl);
213
	$help_menu[] = array("User Forum", "http://www.pfsense.org/j.php?jumpto=forum");
214
	$help_menu[] = array("Documentation", "http://www.pfsense.org/j.php?jumpto=doc");
215
	$help_menu[] = array("Developers Wiki", "http://www.pfsense.org/j.php?jumpto=devwiki");
216
	$help_menu[] = array("Paid Support", "http://www.pfsense.org/j.php?jumpto=portal");
217
	$help_menu[] = array("pfSense Book", "http://www.pfsense.org/j.php?jumpto=book");
218
	$help_menu[] = array("Search portal", "http://www.pfsense.org/j.php?jumpto=searchportal");
219 204f33f6 Scott Ullrich
	$help_menu[] = array("FreeBSD Handbook", "http://www.pfsense.org/j.php?jumpto=fbsdhandbook");
220 3b29612f Chris Buechler
	$help_menu = msort(array_merge($help_menu, return_ext_menu("Help")),0);	
221
}
222 669716df Scott Ullrich
223 e93441e0 Scott Ullrich
/* NOTICE ACKNOWLEDGE CODE by Erik Kristensen */
224
if ($_REQUEST['noticeaction'] == 'acknowledge') {
225
	$notice_id = $_REQUEST['noticeid'];
226
	close_notice($notice_id);
227
}
228
/**********************************************/
229 65384707 Erik Kristensen
230 c6c150e9 Scott Ullrich
?>
231 12a00813 Erik Kristensen
232 9f53d3a8 Scott Ullrich
<div id="wrapper">
233
234
	<div id="header">
235 de115edf Scott Ullrich
		<div id="header-left"><a href="index.php" id="status-link"><img src="/themes/<?= $g['theme']; ?>/images/transparent.gif" border="0"></img></a></div>
236 9f53d3a8 Scott Ullrich
		<div id="header-right">
237 1df0159c Erik Kristensen
			<div class="container">
238
				<div class="left">webConfigurator</div>
239
				<div class="right">
240 64fcbfc8 Erik Kristensen
<?
241 b1cbbf24 Erik Kristensen
				if (are_notices_pending()) {
242
					$notices = get_notices();
243 dca32536 Scott Ullrich
244 a2046789 Scott Ullrich
					$requests=array();
245 dca32536 Scott Ullrich
246 a6fac06e Erik Kristensen
					## Get Query Arguments from URL ###
247
					foreach ($_REQUEST as $key => $value) {
248
						if ($key != "PHPSESSID")
249
							$requests[] = $key.'='.$value;
250
					}
251 a2046789 Scott Ullrich
					if(is_array($requests))
252
						$request_string = implode("&", $requests);
253 a6fac06e Erik Kristensen
254 35eef977 Scott Ullrich
					if(is_array($notices)) {
255
						foreach ($notices as $key => $value) {
256
							$date = date("m-d-y H:i:s", $key);
257
							$noticemsg = str_replace("'", "", $value['notice']);
258
							$noticemsg = str_replace('"', "", $noticemsg);
259
							$noticemsg = str_replace("\n", "", $noticemsg);
260
							$noticemsg = str_replace("<p>", "", $noticemsg);
261
							$noticemsg = str_replace("<pre>", "", $noticemsg);
262
							$noticemsg = str_replace("</pre>", "", $noticemsg);
263
							$noticemsg = str_replace("</p>", "", $noticemsg);
264
							$noticemsg = str_replace("<br>", "", $noticemsg);
265 91d3d442 Scott Ullrich
							$extra_args = "";
266
							if($_GET['xml']) 
267
								$extraargs="&xml=" . $_GET['xml'];
268
							if($_POST['xml']) 
269
								$extraargs="&xml=" . $_POST['xml'];
270
							if($_GET['id']) 
271
								$extraargs="&xml=" . $_GET['id'];
272
							if($_POST['id'])
273
								$extraargs="&xml=" . $_POST['id'];
274
							$notice_msgs = '<a href="?noticeaction=acknowledge&noticeid=all' . $extraargs . '">Acknowledge All</a> &nbsp;&nbsp;&nbsp;&nbsp;.:.&nbsp;&nbsp;&nbsp;&nbsp; ';
275 35eef977 Scott Ullrich
							if ($value['url']) {
276
								$notice_msgs .= $date.' - <a href="'.$url.'?'.$request_string.'&noticeaction=acknowledge&noticeid='.$key.'">['.$value['id'].']</a>';
277
							} else {
278
								$notice_msgs .= $date.' - <a href="?'.$request_string.'&noticeaction=acknowledge&noticeid='.$key.'">['.$value['id'].']'.$noticemsg.'</a>';
279
							}
280
							$notice_msgs .= " &nbsp;&nbsp;&nbsp;&nbsp;.:.&nbsp;&nbsp;&nbsp;&nbsp; ";
281 b1cbbf24 Erik Kristensen
						}
282
					}
283 64fcbfc8 Erik Kristensen
?>
284 b1cbbf24 Erik Kristensen
					<div id="alerts">
285
						<script type="text/javascript">
286
							var content='<div id="marquee-text"><?= $notice_msgs; ?></div>'
287
						</script>
288 625dcc40 Bill Marquette
						<script type="text/javascript" src="/javascript/ticker.js"></script>
289 b1cbbf24 Erik Kristensen
					</div>
290
<?
291
				} else {
292 612832ec Erik Kristensen
?>
293
					<div id="hostname">
294
						<? print $config['system']['hostname'] . "." . $config['system']['domain']; ?>
295
					</div>
296
<?
297 b1cbbf24 Erik Kristensen
				}
298
?>
299 1df0159c Erik Kristensen
				</div>
300
			</div>
301 9f53d3a8 Scott Ullrich
		</div>
302
	</div> <!-- Header DIV -->
303
	<div id="content">
304
		<div id="left">
305 2779b49b Scott Dale
			<div id="navigation" style="z-index:1000">
306 41058a8c Erik Kristensen
				<ul id="menu">
307 d86286ed Erik Kristensen
					<li class="firstdrop">
308 9f53d3a8 Scott Ullrich
						<div>System</div>
309 d86286ed Erik Kristensen
						<ul class="subdrop">
310 7cf210f1 Ermal Lu?i
						<?php
311 5ba2df71 Scott Ullrich
							output_menu($system_menu);
312 7cf210f1 Ermal Lu?i
						?>
313 9f53d3a8 Scott Ullrich
						</ul>
314
					</li>
315 d86286ed Erik Kristensen
					<li class="drop">
316
						<div>Interfaces</div>
317
						<ul class="subdrop">
318 7cf210f1 Ermal Lu?i
						<?php
319 5ba2df71 Scott Ullrich
							output_menu($interfaces_menu);
320 7cf210f1 Ermal Lu?i
						?>
321 9f53d3a8 Scott Ullrich
						</ul>
322
					</li>
323 d86286ed Erik Kristensen
					<li class="drop">
324 9f53d3a8 Scott Ullrich
						<div>Firewall</div>
325 d86286ed Erik Kristensen
						<ul class="subdrop">
326 7cf210f1 Ermal Lu?i
						<?php
327 5ba2df71 Scott Ullrich
							output_menu($firewall_menu);
328 7cf210f1 Ermal Lu?i
						?>
329 9f53d3a8 Scott Ullrich
						</ul>
330
					</li>
331 d86286ed Erik Kristensen
					<li class="drop">
332 9f53d3a8 Scott Ullrich
						<div>Services</div>
333 d86286ed Erik Kristensen
						<ul class="subdrop">
334 7cf210f1 Ermal Lu?i
						<?
335 5ba2df71 Scott Ullrich
							output_menu($services_menu);
336 7cf210f1 Ermal Lu?i
						?>
337 9f53d3a8 Scott Ullrich
						</ul>
338
					</li>
339 d86286ed Erik Kristensen
					<li class="drop">
340 9f53d3a8 Scott Ullrich
						<div>VPN</div>
341 d86286ed Erik Kristensen
						<ul class="subdrop">
342 7cf210f1 Ermal Lu?i
						<?php
343 5ba2df71 Scott Ullrich
							output_menu($vpn_menu);
344 7cf210f1 Ermal Lu?i
						?>
345 9f53d3a8 Scott Ullrich
						</ul>
346
					</li>
347 d86286ed Erik Kristensen
					<li class="drop">
348 9f53d3a8 Scott Ullrich
						<div>Status</div>
349 d86286ed Erik Kristensen
						<ul class="subdrop">
350 7cf210f1 Ermal Lu?i
						<?php
351 5e3249f0 Scott Ullrich
							output_menu($status_menu);
352 7cf210f1 Ermal Lu?i
						?>
353 9f53d3a8 Scott Ullrich
						</ul>
354
					</li>
355 669716df Scott Ullrich
					<li class="drop">
356 9f53d3a8 Scott Ullrich
						<div>Diagnostics</div>
357 d86286ed Erik Kristensen
						<ul id="diag" class="subdrop">
358 7cf210f1 Ermal Lu?i
						<?
359 5ba2df71 Scott Ullrich
							output_menu($diagnostics_menu);
360 7cf210f1 Ermal Lu?i
						?>
361 9f53d3a8 Scott Ullrich
						</ul>
362
					</li>
363 3b29612f Chris Buechler
					<?php if(! $g['disablehelpmenu']): ?>
364 669716df Scott Ullrich
					<li class="lastdrop">
365
						<div>Help</div>
366
						<ul id="help" class="subdrop">
367
						<?
368 471ce716 Scott Ullrich
							output_menu($help_menu, "_new");
369 669716df Scott Ullrich
						?>
370
						</ul>
371
					</li>
372 3b29612f Chris Buechler
					<?php endif; ?>
373 9f53d3a8 Scott Ullrich
				</ul>
374
			</div>
375 dca32536 Scott Ullrich
376 9f53d3a8 Scott Ullrich
		</div> <!-- Left DIV -->
377 dca32536 Scott Ullrich
378 9f53d3a8 Scott Ullrich
		<div id="right">
379 dca32536 Scott Ullrich
380 5c9cc1de Scott Ullrich
<?php
381 45ee90ed Matthew Grooms
382 5c9cc1de Scott Ullrich
	/* display a top alert bar if need be */
383
	$need_alert_display = false;
384
	$found_notices = are_notices_pending();
385
	if($found_notices == true) {
386
		$notices = get_notices();
387
		if(!$notices) {
388
			$need_alert_display = true;
389 e444cd01 Scott Ullrich
			$display_text = print_notices() . "<br>";
390 dca32536 Scott Ullrich
		}
391 5c9cc1de Scott Ullrich
	}
392
	if($need_alert_display == true) {
393
                echo "<div style=\"background-color:#000000\" id=\"roundalert\">";
394
                echo "<table>";
395
		echo "<tr><td><font color=\"#ffffff\">";
396
		echo "&nbsp;&nbsp;<img align=\"middle\" src=\"/top_notification.gif\">&nbsp;&nbsp;&nbsp;";
397
		echo $display_text;
398
		echo "</td>";
399
		echo "</tr>";
400
		echo "</table>";
401
		echo "</div>";
402
	}
403 b8f82cd7 Scott Ullrich
404 5e3249f0 Scott Ullrich
function add_to_menu($url, $name) {
405 45ee90ed Matthew Grooms
	if (isAllowedPage($url))
406
		echo "<li><a href=\"{$url}\" class=\"navlnk\">{$name}</a></li>\n";
407 b8f82cd7 Scott Ullrich
}
408 19b331c1 Scott Ullrich
?>
409 dca32536 Scott Ullrich
410 f7eae2bf jim-p
<div>
411
<span class="pgtitle"><?=genhtmltitle($pgtitle);?></font></span>
412 c2e23f7b jim-p
<span style="float:right; margin: 0 0 20px 20px;">
413
<?php if(! empty($statusurl)): ?>
414
<a href="<?php echo $statusurl; ?>" target="_new" title="Status of items on this page."><img src="/themes/<?php echo $g['theme']; ?>/images/status.png" border="0"></a>
415
<?php endif; ?>
416
<?php if(! empty($logurl)): ?>
417
<a href="<?php echo $logurl; ?>" target="_new" title="Log entries for items on this page."><img src="/themes/<?php echo $g['theme']; ?>/images/log.png" border="0"></a>
418
<?php endif; ?>
419 28181237 Renato Botelho
<?php if(! $g['disablehelpicon']): ?>
420 c2e23f7b jim-p
<a href="<?php echo $helpurl; ?>" target="_new" title="Help for items on this page."><img src="/themes/<?php echo $g['theme']; ?>/images/help.png" border="0"></a>
421 28181237 Renato Botelho
<?php endif; ?>
422 c2e23f7b jim-p
</span>
423 f7eae2bf jim-p
</div>
424
<br />
425 b873ded5 jim-p
426 366e5d8c sullrich
<?php
427
	$pgtitle_output = true;
428 3f0357fc Ermal Lu?i
?>