Project

General

Profile

Download (21.6 KB) Statistics
| Branch: | Tag: | Revision:
1
<?php
2
/*
3
	pfSense_MODULE: head.inc
4
*/
5
/* ====================================================================
6
 *	Copyright (c)  2004-2015  Electric Sheep Fencing, LLC. All rights reserved.
7
 *
8
 *	Redistribution and use in source and binary forms, with or without modification,
9
 *	are permitted provided that the following conditions are met:
10
 *
11
 *	1. Redistributions of source code must retain the above copyright notice,
12
 *		this list of conditions and the following disclaimer.
13
 *
14
 *	2. Redistributions in binary form must reproduce the above copyright
15
 *		notice, this list of conditions and the following disclaimer in
16
 *		the documentation and/or other materials provided with the
17
 *		distribution.
18
 *
19
 *	3. All advertising materials mentioning features or use of this software
20
 *		must display the following acknowledgment:
21
 *		"This product includes software developed by the pfSense Project
22
 *		 for use in the pfSense software distribution. (http://www.pfsense.org/).
23
 *
24
 *	4. The names "pfSense" and "pfSense Project" must not be used to
25
 *		 endorse or promote products derived from this software without
26
 *		 prior written permission. For written permission, please contact
27
 *		 coreteam@pfsense.org.
28
 *
29
 *	5. Products derived from this software may not be called "pfSense"
30
 *		nor may "pfSense" appear in their names without prior written
31
 *		permission of the Electric Sheep Fencing, LLC.
32
 *
33
 *	6. Redistributions of any form whatsoever must retain the following
34
 *		acknowledgment:
35
 *
36
 *	"This product includes software developed by the pfSense Project
37
 *	for use in the pfSense software distribution (http://www.pfsense.org/).
38
 *
39
 *	THIS SOFTWARE IS PROVIDED BY THE pfSense PROJECT ``AS IS'' AND ANY
40
 *	EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
41
 *	IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
42
 *	PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE pfSense PROJECT OR
43
 *	ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
44
 *	SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
45
 *	NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
46
 *	LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
47
 *	HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
48
 *	STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
49
 *	ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
50
 *	OF THE POSSIBILITY OF SUCH DAMAGE.
51
 *
52
 *	====================================================================
53
 *
54
 */
55

    
56
require_once("globals.inc");
57
require_once("functions.inc");
58
require_once("shortcuts.inc");
59
require_once("service-utils.inc");
60

    
61
header('Content-Type: text/html; charset=utf-8');
62

    
63
$pagetitle = gentitle($pgtitle);
64

    
65
if (isset($config['system']['webgui']['pagenamefirst'])) {
66
	$tabtitle = $pagetitle . " - " . $config['system']['hostname'] . "." . $config['system']['domain'];
67
} else {
68
	$tabtitle = $config['system']['hostname'] . "." . $config['system']['domain'] . " - " . $pagetitle;
69
}
70
?>
71
<!DOCTYPE html>
72
<html lang="en">
73
<head>
74
	<meta name="viewport" content="width=device-width, initial-scale=1">
75
	<link rel="stylesheet" href="/bootstrap/css/pfSense.css" />
76
	<link rel="stylesheet" href="font-awesome/css/font-awesome.min.css">
77
	<title><?=$tabtitle?></title>
78
	<script>var events = events || [];</script>
79
</head>
80
<body id="<?=basename($_SERVER['SCRIPT_NAME'], '.php')?>">
81
<?php
82

    
83
/* Determine automated help URL. Should output the page name and parameters
84
   separately */
85
$uri_split = "";
86
preg_match("/\/(.*)\?(.*)/", $_SERVER["REQUEST_URI"], $uri_split);
87

    
88
/* If there was no match, there were no parameters, just grab the filename
89
   Otherwise, use the matched filename from above. */
90
if (empty($uri_split[0])) {
91
	$pagename = ltrim($_SERVER["REQUEST_URI"], '/');
92
} else {
93
	$pagename = $uri_split[1];
94
}
95

    
96
/* If the page name is still empty, the user must have requested / (index.php) */
97
if (empty($pagename)) {
98
	$pagename = "index.php";
99
}
100

    
101
/* If the filename is pkg_edit.php or wizard.php, reparse looking
102
	for the .xml filename */
103
if (($pagename == "pkg.php") || ($pagename == "pkg_edit.php") || ($pagename == "wizard.php")) {
104
	$param_split = explode('&', $uri_split[2]);
105
	foreach ($param_split as $param) {
106
		if (substr($param, 0, 4) == "xml=") {
107
			$xmlfile = explode('=', $param);
108
			$pagename = $xmlfile[1];
109
		}
110
	}
111
}
112

    
113
// Build the full help URL.
114
$helpurl .= "{$g['help_base_url']}?page={$pagename}";
115

    
116
// Create a menu entry of any installed packages in the specified category
117
// (Now reads the menu information from $config['installedpackages']['menu'] only)
118
function return_ext_menu($section) {
119
	global $config;
120

    
121
	$htmltext = "";
122
	$extarray = array();
123

    
124
	if ( (!empty($config['installedpackages']['package'])) && (!empty($config['installedpackages']['menu']))) {
125
		foreach ($config['installedpackages']['menu'] as $menu) {
126
//			print('Name: ' . $menu['name'] . ', Pkg category: ' . $menu['category'] . ', Section: ' . $section . '<br />');
127
			if ($menu['section'] != $section) {
128
				continue;
129
			}
130

    
131
			if ($menu['url'] != "") {
132
				$test_url = $menu['url'];
133
				$addresswithport = getenv("HTTP_HOST");
134
				$colonpos = strpos($addresswithport, ":");
135

    
136
				if ($colonpos !== false) {
137
					//my url is actually just the IP address of the pfsense box
138
					$myurl = substr($addresswithport, 0, $colonpos);
139
				} else {
140
					$myurl = $addresswithport;
141
				}
142
				$description = str_replace('$myurl', $myurl, $menu['url']);
143
			} else {
144
				$description = '/pkg.php?xml=' . $menu['configfile'];
145
				$test_url=$description;
146
			}
147

    
148
			if (isAllowedPage($test_url)) {
149
				$extarray[] = array($menu['name'], $description);
150
			}
151
		}
152
	}
153

    
154
	return $extarray;
155
}
156

    
157
function output_menu($arrayitem, $target = null) {
158
	foreach ($arrayitem as $item) {
159
		if (isAllowedPage($item[1]) || $item[1] == "/index.php?logout") {
160
			$attr = sprintf("href=\"%s\"", htmlentities($item[1]));
161
			if ($target) {
162
				$attr .= sprintf(" target=\"%s\"", htmlentities($target));
163
			}
164
			$class = "navlnk";
165
			if ($item['class']) {
166
				$class .= " {$item['class']}";
167
			}
168
			$attr .= sprintf(" class=\"%s\"", htmlentities($class));
169
			if ($item['style']) {
170
				$attr .= sprintf(" style=\"%s\"", htmlentities($item['style']));
171
			}
172
			echo "<li>". sprintf("<a %s>%s</a>", $attr, $item[0]). "</li>\n";
173
		}
174
	}
175
}
176

    
177
// System
178
$system_menu = array();
179
$system_menu[] = array(gettext("Logout"), "/index.php?logout");
180
$system_menu[] = array(gettext("Advanced"), "/system_advanced_admin.php");
181
$system_menu[] = array(gettext("Firmware"), "/system_firmware.php");
182
$system_menu[] = array(gettext("General Setup"), "/system.php");
183
$system_menu[] = array(gettext("High Avail. Sync"), "/system_hasync.php");
184
if ($g['platform'] == $g['product_name'] or $g['platform'] == "nanobsd") {
185
	$system_menu[] = array(gettext("Packages"), "/pkg_mgr_installed.php");
186
}
187
$system_menu[] = array(gettext("Setup Wizard"), "/wizard.php?xml=setup_wizard.xml");
188
$system_menu[] = array(gettext("Routing"), "/system_gateways.php");
189
$system_menu[] = array(gettext("Cert Manager"), "/system_camanager.php");
190
if (!isAllowedPage("system_usermanager.php*")) {
191
	$system_menu[] = array(gettext("User Manager"), "/system_usermanager_passwordmg.php");
192
} else {
193
	$system_menu[] = array(gettext("User Manager"), "/system_usermanager.php");
194
}
195

    
196
$system_menu = msort(array_merge($system_menu, return_ext_menu("System")), 0);
197

    
198
// Interfaces
199
$interfaces_menu = array();
200
if (!isset($config['system']['webgui']['noassigninterfaces'])) {
201
	$interfaces_menu[] = array(gettext("(assign)"), "/interfaces_assign.php");
202
}
203
$opts = get_configured_interface_with_descr(false, true);
204
foreach ($opts as $oif => $odescr) {
205
	if (!isset($config['interfaces'][$oif]['ovpn'])) {
206
		$interfaces_menu[] = array(htmlspecialchars($odescr), "/interfaces.php?if={$oif}");
207
	}
208
}
209
$interfaces_menu = msort(array_merge($interfaces_menu, return_ext_menu("Interfaces")), 0);
210

    
211
// Firewall
212
$firewall_menu = array();
213
$firewall_menu[] = array(gettext("Aliases"), "/firewall_aliases.php");
214
$firewall_menu[] = array(gettext("NAT"), "/firewall_nat.php");
215
$firewall_menu[] = array(gettext("Rules"), "/firewall_rules.php");
216
$firewall_menu[] = array(gettext("Schedules"), "/firewall_schedule.php");
217
$firewall_menu[] = array(gettext("Traffic Shaper"), "/firewall_shaper.php");
218
$firewall_menu[] = array(gettext("Virtual IPs"), "/firewall_virtual_ip.php");
219
$firewall_menu = msort(array_merge($firewall_menu, return_ext_menu("Firewall")), 0);
220

    
221
// Services
222
$services_menu = array();
223
$services_menu[] = array(gettext("Captive Portal"), "/services_captiveportal.php");
224
$services_menu[] = array(gettext("DNS Forwarder"), "/services_dnsmasq.php");
225
$services_menu[] = array(gettext("DNS Resolver"), "/services_unbound.php");
226
$services_menu[] = array(gettext("DHCP Relay"), "/services_dhcp_relay.php");
227
$services_menu[] = array(gettext("DHCPv6 Relay"), "/services_dhcpv6_relay.php");
228

    
229
if ($g['services_dhcp_server_enable']) {
230
	$services_menu[] = array(gettext("DHCP Server"), "/services_dhcp.php");
231
	$services_menu[] = array(gettext("DHCPv6 Server/RA"), "/services_dhcpv6.php");
232
}
233

    
234
$services_menu[] = array(gettext("Dynamic DNS"), "/services_dyndns.php");
235
$services_menu[] = array(gettext("IGMP proxy"), "/services_igmpproxy.php");
236
$services_menu[] = array(gettext("Load Balancer"), "/load_balancer_pool.php");
237
$services_menu[] = array(gettext("NTP"), "/services_ntpd.php");
238
$services_menu[] = array(gettext("PPPoE Server"), "/vpn_pppoe.php");
239
$services_menu[] = array(gettext("SNMP"), "/services_snmp.php");
240

    
241
if (count($config['interfaces']) > 1) {
242
	/* no use for UPnP in single-interface deployments
243
	remove to reduce user confusion
244
	*/
245
	$services_menu[] = array(gettext("UPnP &amp; NAT-PMP"), "/pkg_edit.php?xml=miniupnpd.xml");
246
}
247

    
248
$services_menu[] = array(gettext("Wake on LAN"), "/services_wol.php");
249
$services_menu = msort(array_merge($services_menu, return_ext_menu("Services")), 0);
250

    
251
// VPN
252
$vpn_menu = array();
253
$vpn_menu[] = array(gettext("IPsec"), "/vpn_ipsec.php");
254
$vpn_menu[] = array(gettext("OpenVPN"), "/vpn_openvpn_server.php");
255
//$vpn_menu[] = array(gettext("PPTP"), "/vpn_pptp.php");
256
$vpn_menu[] = array(gettext("L2TP"), "/vpn_l2tp.php");
257
$vpn_menu = msort(array_merge($vpn_menu, return_ext_menu("VPN")), 0);
258

    
259
// Status
260
$status_menu = array();
261
if (count($config['captiveportal']) > 0) {
262
	$status_menu[] = array(gettext("Captive Portal"), "/status_captiveportal.php");
263
}
264

    
265
$status_menu[] = array(gettext("CARP (failover)"), "/carp_status.php");
266
$status_menu[] = array(gettext("Dashboard"), "/index.php");
267
$status_menu[] = array(gettext("Gateways"), "/status_gateways.php");
268
$status_menu[] = array(gettext("DHCP Leases"), "/status_dhcp_leases.php");
269
$status_menu[] = array(gettext("DHCPv6 Leases"), "/status_dhcpv6_leases.php");
270
$status_menu[] = array(gettext("Filter Reload"), "/status_filter_reload.php");
271
$status_menu[] = array(gettext("Interfaces"), "/status_interfaces.php");
272
$status_menu[] = array(gettext("IPsec"), "/diag_ipsec.php");
273
$status_menu[] = array(gettext("Load Balancer"), "/status_lb_pool.php");
274
$status_menu[] = array(gettext("NTP"), "/status_ntpd.php");
275
$status_menu[] = array(gettext("OpenVPN"), "/status_openvpn.php");
276

    
277
if ($g['platform'] == $g['product_name']) {
278
	$status_menu[] = array(gettext("Package Logs"), "/diag_pkglogs.php");
279
}
280

    
281
$status_menu[] = array(gettext("Queues"), "/status_queues.php");
282
$status_menu[] = array(gettext("RRD Graphs"), "/status_rrd_graph.php");
283
$status_menu[] = array(gettext("Services"), "/status_services.php");
284
$status_menu[] = array(gettext("System Logs"), "/diag_logs.php");
285
$status_menu[] = array(gettext("Traffic Graph"), "/status_graph.php?if=wan");
286

    
287
if (count($config['interfaces']) > 1) {
288
	$status_menu[] = array(gettext("UPnP &amp; NAT-PMP"), "/status_upnp.php");
289
}
290

    
291
$ifentries = get_configured_interface_with_descr();
292
foreach ($ifentries as $ent => $entdesc) {
293
	if (is_array($config['interfaces'][$ent]['wireless']) &&
294
		preg_match($g['wireless_regex'], $config['interfaces'][$ent]['if'])) {
295
		$wifdescrs[$ent] = $entdesc;
296
	}
297
}
298

    
299
if (count($wifdescrs) > 0) {
300
	$status_menu[] = array(gettext("Wireless"), "/status_wireless.php");
301
}
302

    
303
$status_menu = msort(array_merge($status_menu, return_ext_menu("Status")), 0);
304

    
305
// Diagnostics
306
$diagnostics_menu = array();
307
$diagnostics_menu[] = array(gettext("ARP Table"), "/diag_arp.php");
308
$diagnostics_menu[] = array(gettext("Authentication"), "/diag_authentication.php");
309
$diagnostics_menu[] = array(gettext("Backup/Restore"), "/diag_backup.php");
310
$diagnostics_menu[] = array(gettext("Command Prompt"), "/exec.php");
311
$diagnostics_menu[] = array(gettext("DNS Lookup"), "/diag_dns.php");
312
$diagnostics_menu[] = array(gettext("Edit File"), "/edit.php");
313
$diagnostics_menu[] = array(gettext("Factory Defaults"), "/diag_defaults.php");
314

    
315
if (file_exists("/var/run/gmirror_active")) {
316
	$diagnostics_menu[] = array(gettext("GEOM Mirrors"), "/diag_gmirror.php");
317
}
318

    
319
$diagnostics_menu[] = array(gettext("Halt System"), "/halt.php");
320
$diagnostics_menu[] = array(gettext("Limiter Info"), "/diag_limiter_info.php");
321
$diagnostics_menu[] = array(gettext("NDP Table"), "/diag_ndp.php");
322
$diagnostics_menu[] = array(gettext("Tables"), "/diag_tables.php");
323
$diagnostics_menu[] = array(gettext("Ping"), "/diag_ping.php");
324
$diagnostics_menu[] = array(gettext("Test Port"), "/diag_testport.php");
325
$diagnostics_menu[] = array(gettext("pfInfo"), "/diag_pf_info.php");
326
$diagnostics_menu[] = array(gettext("pfTop"), "/diag_system_pftop.php");
327
$diagnostics_menu[] = array(gettext("Reboot"), "/reboot.php");
328
$diagnostics_menu[] = array(gettext("Routes"), "/diag_routes.php");
329
$diagnostics_menu[] = array(gettext("SMART Status"), "/diag_smart.php");
330
$diagnostics_menu[] = array(gettext("Sockets"), "/diag_sockets.php");
331
$diagnostics_menu[] = array(gettext("States"), "/diag_dump_states.php");
332
$diagnostics_menu[] = array(gettext("States Summary"), "/diag_states_summary.php");
333
$diagnostics_menu[] = array(gettext("System Activity"), "/diag_system_activity.php");
334
$diagnostics_menu[] = array(gettext("Traceroute"), "/diag_traceroute.php");
335
$diagnostics_menu[] = array(gettext("Packet Capture"), "/diag_packet_capture.php");
336

    
337
if ($g['platform'] == "nanobsd") {
338
	$diagnostics_menu[] = array(gettext("NanoBSD"), "/diag_nanobsd.php");
339
}
340

    
341
if (isset($config['system']['developer'])) {
342
	$diagnostics_menu[] = array(gettext("Restart HTTPD"), "/restart_httpd.php", "style" => "font-weight: bold; color: yellow;");
343
}
344

    
345
$diagnostics_menu = msort(array_merge($diagnostics_menu, return_ext_menu("Diagnostics")), 0);
346

    
347
$gold_menu = array();
348
$gold_menu[] = array(gettext("pfSense Gold"), "https://www.pfsense.org/gold");
349
$gold_menu = msort(array_merge($gold_menu, return_ext_menu("Gold")), 0);
350

    
351
if (!$g['disablehelpmenu']) {
352
	$help_menu = array();
353
	$help_menu[] = array(gettext("About this Page"), $helpurl);
354
	if ($g['product_name'] == "pfSense") {
355
		$help_menu[] = array(gettext("Bug Database"), "https://www.pfsense.org/j.php?jumpto=redmine");
356
	}
357

    
358
	$help_menu[] = array(gettext("User Forum"), "https://www.pfsense.org/j.php?jumpto=forum");
359
	$help_menu[] = array(gettext("Documentation"), "https://www.pfsense.org/j.php?jumpto=doc");
360
	$help_menu[] = array(gettext("Developers Wiki"), "https://www.pfsense.org/j.php?jumpto=devwiki");
361
	$help_menu[] = array(gettext("Paid Support"), "https://www.pfsense.org/j.php?jumpto=portal");
362
	$help_menu[] = array(gettext("pfSense Book"), "https://www.pfsense.org/j.php?jumpto=book");
363
	$help_menu[] = array(gettext("Search portal"), "https://www.pfsense.org/j.php?jumpto=searchportal");
364
	$help_menu[] = array(gettext("FreeBSD Handbook"), "https://www.pfsense.org/j.php?jumpto=fbsdhandbook");
365
	$help_menu = msort(array_merge($help_menu, return_ext_menu("Help")), 0);
366
}
367

    
368
?>
369
<nav class="navbar navbar-static-top navbar-inverse">
370
	<div class="container">
371
		<div class="navbar-header">
372
			<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#pf-navbar">
373
				<span class="sr-only">Toggle navigation</span>
374
				<span class="icon-bar"></span>
375
				<span class="icon-bar"></span>
376
				<span class="icon-bar"></span>
377
			</button>
378
			<a class="navbar-brand" href="/"><img src="/logo.png" alt="pfSense" /></a>
379
		</div>
380
		<div class="collapse navbar-collapse" id="pf-navbar">
381
			<ul class="nav navbar-nav">
382
			<?php foreach ([
383
					['name' => 'System',	  'menu' => $system_menu,	   'href' => null],
384
					['name' => 'Interfaces',  'menu' => $interfaces_menu,  'href' => null],
385
					['name' => 'Firewall',	  'menu' => $firewall_menu,	   'href' => null],
386
					['name' => 'Services',	  'menu' => $services_menu,	   'href' => null],
387
					['name' => 'VPN',		  'menu' => $vpn_menu,		   'href' => null],
388
					['name' => 'Status',	  'menu' => $status_menu,	   'href' => null],
389
					['name' => 'Diagnostics', 'menu' => $diagnostics_menu, 'href' => null],
390
					['name' => 'Gold',		  'menu' => $gold_menu,		   'href' => '_blank'],
391
					['name' => 'Help',		  'menu' => $help_menu,		   'href' => '_blank']
392
				] as $item):
393
					if ($item['name'] == 'Help' && $g['disablehelpmenu']) {
394
						continue;
395
					} ?>
396
				<li class="dropdown">
397
					<a href="#" class="dropdown-toggle" data-toggle="dropdown" role="button" aria-expanded="false">
398
						<?=gettext($item['name'])?>
399
						<span class="caret"></span>
400
					</a>
401
					<ul class="dropdown-menu" role="menu"><?=output_menu($item['menu'], $item['href'])?></ul>
402
				</li>
403
			<?php endforeach?>
404
				<?php if (are_notices_pending()):?>
405
					<?php $notices = get_notices()?>
406
					<li class="dropdown">
407
						<a href="#" data-toggle="modal" data-target="#notices" role="button" aria-expanded="false"><?=gettext("Notices")?>
408
							<span class="badge"><?=count($notices)?></span>
409
						</a>
410
					</li>
411
<?php
412
				endif;
413
?>
414
			</ul>
415
		</div>
416
	</div>
417
</nav>
418

    
419
<div class="container">
420
	<header class="header">
421

    
422
<?php
423
	// If you set $notitle = true BEFORE including head.inc, the page title will be supressed
424
	if(isset($notitle)) {
425
		print('<br />');
426
		unset($notitle);
427
	} else {
428

    
429
	print(genhtmltitle($pgtitle));
430
	}
431
?>
432
		<ul class="context-links">
433
<?php
434

    
435
if (!$hide_service_status && !empty($shortcuts[$shortcut_section]['service'])) {
436
	$ssvc = array();
437
	switch ($shortcut_section) {
438
		case "openvpn":
439
			$ssvc = find_service_by_openvpn_vpnid($vpnid);
440
			break;
441
		case "captiveportal":
442
			$ssvc = find_service_by_cp_zone($cpzone);
443
			break;
444
		default:
445
			$ssvc = find_service_by_name($shortcuts[$shortcut_section]['service']);
446
	}
447
	if (!empty($ssvc)) {
448
		// echo '<li>'. get_service_status_icon($ssvc, false). '</li>'; TODO: Add missing function
449
		echo '<li>'. get_service_control_GET_links($ssvc, false). '</li>';
450
	}
451
}
452

    
453
echo '<li>'. get_shortcut_main_link($shortcut_section, false). '</li>';
454
echo '<li>'. get_shortcut_status_link($shortcut_section, false). '</li>';
455
echo '<li>'. get_shortcut_log_link($shortcut_section, false). '</li>';
456

    
457
?>
458
	<?php if (!$g['disablehelpicon']): ?>
459
		<li>
460
			<a href="<?=$helpurl?>" title="<?=gettext("Help for items on this page")?>" class="help-icon">
461
				<i class="icon-large icon-question-sign"></i>
462
			</a>
463
		</li>
464
	<?php endif?>
465
		</ul>
466
	</header>
467
<?php
468
/* if upgrade in progress, alert user */
469
if (is_subsystem_dirty('packagelock') || file_exists('/conf/needs_package_sync' && platform_booting())) {
470
	if (file_exists('/conf/needs_package_sync') && platform_booting()) {
471
		$info_text = sprintf(gettext("%s is booting then packages will be reinstalled in the background.<p>Do not make changes in the GUI until this is complete."), $g['product_name']);
472
	} else {
473
		$pgtitle = array(gettext("System"), gettext("Package Manager"));
474
		$info_text = gettext("Packages are currently being reinstalled in the background.<p>Do not make changes in the GUI until this is complete.");
475
		$info_text .= gettext("<p>If the above message is still displayed after a couple of hours, use the 'Clear Package Lock' button on the <a href='diag_backup.php' title='Backup/Restore'>Backup/Restore page</a> and reinstall packages manually.");
476
	}
477

    
478
	print_info_box($info_text);
479
}
480

    
481
$pgtitle_output = true;
482

    
483
/*	If this page is being remotely managed then do not allow the loading of the contents. */
484
if ($config['remote_managed_pages']['item']) {
485
	foreach ($config['remote_managed_pages']['item'] as $rmp) {
486
		if ($rmp == $_SERVER['SCRIPT_NAME']) {
487
			print_info_box_np("This page is currently being managed by a remote machine.");
488
			include("foot.inc");
489
			exit;
490
		}
491
	}
492
}
493

    
494
// Modal notices window
495
// The notices modal needs to be outside of the page display div or things get messy
496
if (are_notices_pending()):?>
497

    
498
<div id="notices" class="modal fade" role="dialog">
499
	<div class="mopdal-dialog">
500
		<div class="modal-content">
501
			<div class="modal-header">
502
				<button type="button" class="close" data-dismiss="modal" aria-label="Close">
503
					<span aria-hidden="true">&times;</span>
504
				</button>
505

    
506
				<h3 class="modal-title" id="myModalLabel">Notices</h3>
507
			</div>
508

    
509
			<div class="modal-body">
510
<?php
511
	$noticeCategories = array();
512

    
513
	if(is_array($notices)) {
514
		foreach ($notices as $time => $notice)
515
		{
516
			if (!isset($noticeCategories[ $notice['category'] ]))
517
				$noticeCategories[ $notice['category'] ] = array();
518

    
519
			$notice['time'] = $time;
520
			array_push($noticeCategories[ $notice['category'] ], $notice);
521
		}
522
	}
523

    
524
	foreach ($noticeCategories as $category => $catNotices):?>
525
				<h4><?=$category?></h4>
526
				<ul>
527
<?php
528
	foreach ($catNotices as $notice):
529
?>
530
					<li>
531
						<b>
532
<?php if (!empty($notice['url'])):?>
533
							<a href="<?=$notice['url']?>"><?=$notice['id']?></a> -
534
<?php endif;?>
535
						</b>
536
						<?=$notice['notice']?>
537
						<i>@ <?=date('Y-m-d H:i:s', $notice['time'])?></i>
538
					</li>
539
<?php	endforeach;?>
540
				</ul>
541
<?php endforeach;?>
542
			</div>
543

    
544
			<div class="modal-footer">
545
				<button type="button" class="btn btn-default" data-dismiss="modal">Close</button>
546
				<a type="button" class="btn btn-primary" href="javascript:clear_notices();">Mark all as read</a>
547
			</div>
548
		</div>
549
	</div>
550
</div>
551

    
552
<script>
553
	// Do some Ajax to make index.php clear the notices
554
	function clear_notices() {
555
		xmlhttp=new XMLHttpRequest();
556
		xmlhttp.open("GET","index.php?closenotice=all",true);
557
		xmlhttp.send();
558
		location.reload(); // reload the page to clear the notices indicator and dismiss the modal dialog all in one
559
	}
560
</script>
561

    
562
<?php endif;
(78-78/234)