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 |
43f26ab1
|
Ermal
|
if (!isAllowedPage("system_usermanager.php*"))
|
93 |
|
|
$system_menu[] = array("User Manager", "/system_usermanager_passwordmg.php");
|
94 |
|
|
else
|
95 |
|
|
$system_menu[] = array("User Manager", "/system_usermanager.php");
|
96 |
5ba2df71
|
Scott Ullrich
|
$system_menu = msort(array_merge($system_menu, return_ext_menu("System")),0);
|
97 |
5e3249f0
|
Scott Ullrich
|
|
98 |
|
|
// Interfaces
|
99 |
5ba2df71
|
Scott Ullrich
|
$interfaces_menu = array();
|
100 |
5e3249f0
|
Scott Ullrich
|
if (!isset($config['system']['webgui']['noassigninterfaces']))
|
101 |
5ba2df71
|
Scott Ullrich
|
$interfaces_menu[] = array("(assign)", "/interfaces_assign.php");
|
102 |
5e3249f0
|
Scott Ullrich
|
$opts = get_configured_interface_with_descr(false, true);
|
103 |
|
|
foreach ($opts as $oif => $odescr)
|
104 |
|
|
if (!isset($config['interfaces'][$oif]['ovpn']))
|
105 |
5ba2df71
|
Scott Ullrich
|
$interfaces_menu[] = array(htmlspecialchars($odescr), "/interfaces.php?if={$oif}");
|
106 |
|
|
$interfaces_menu = msort(array_merge($interfaces_menu, return_ext_menu("Interfaces")),0);
|
107 |
5e3249f0
|
Scott Ullrich
|
|
108 |
|
|
// Firewall
|
109 |
5ba2df71
|
Scott Ullrich
|
$firewall_menu = array();
|
110 |
|
|
$firewall_menu[] = array("Aliases", "/firewall_aliases.php");
|
111 |
0d5c9be1
|
Chris Buechler
|
$firewall_menu[] = array("NAT", "/firewall_nat.php");
|
112 |
5ba2df71
|
Scott Ullrich
|
$firewall_menu[] = array("Rules", "/firewall_rules.php");
|
113 |
|
|
$firewall_menu[] = array("Schedules", "/firewall_schedule.php");
|
114 |
38b357bd
|
Ermal
|
$firewall_menu[] = array("Traffic Shaper", "/firewall_shaper.php");
|
115 |
5ba2df71
|
Scott Ullrich
|
$firewall_menu[] = array("Virtual IPs", "/firewall_virtual_ip.php");
|
116 |
|
|
$firewall_menu = msort(array_merge($firewall_menu, return_ext_menu("Firewall")),0);
|
117 |
5e3249f0
|
Scott Ullrich
|
|
118 |
|
|
// Services
|
119 |
5ba2df71
|
Scott Ullrich
|
$services_menu = array();
|
120 |
|
|
$services_menu[] = array("Captive Portal", "/services_captiveportal.php");
|
121 |
|
|
$services_menu[] = array("DNS Forwarder", "/services_dnsmasq.php");
|
122 |
|
|
$services_menu[] = array("DHCP Relay", "/services_dhcp_relay.php");
|
123 |
5e3249f0
|
Scott Ullrich
|
if($g['services_dhcp_server_enable'])
|
124 |
5ba2df71
|
Scott Ullrich
|
$services_menu[] = array("DHCP Server", "/services_dhcp.php");
|
125 |
|
|
$services_menu[] = array("Dynamic DNS", "/services_dyndns.php");
|
126 |
|
|
$services_menu[] = array("IGMP proxy", "/services_igmpproxy.php");
|
127 |
3e2165b6
|
jim-p
|
$services_menu[] = array("Load Balancer", "/load_balancer_pool.php");
|
128 |
5ba2df71
|
Scott Ullrich
|
$services_menu[] = array("OLSR", "/pkg_edit.php?xml=olsrd.xml&id=0");
|
129 |
|
|
$services_menu[] = array("PPPoE Server", "/vpn_pppoe.php");
|
130 |
98bcf1f8
|
Scott Ullrich
|
$services_menu[] = array("RIP", "/pkg_edit.php?xml=routed.xml&id=0");
|
131 |
5ba2df71
|
Scott Ullrich
|
$services_menu[] = array("SNMP", "/services_snmp.php");
|
132 |
38b357bd
|
Ermal
|
if(count($config['interfaces']) > 1) {
|
133 |
5e3249f0
|
Scott Ullrich
|
/* no use for UPnP in single-interface deployments
|
134 |
|
|
remove to reduce user confusion
|
135 |
|
|
*/
|
136 |
93b2c459
|
jim-p
|
$services_menu[] = array("UPnP & NAT-PMP", "/pkg_edit.php?xml=miniupnpd.xml&id=0");
|
137 |
5e3249f0
|
Scott Ullrich
|
}
|
138 |
5ba2df71
|
Scott Ullrich
|
$services_menu = msort(array_merge($services_menu, return_ext_menu("Services")),0);
|
139 |
5e3249f0
|
Scott Ullrich
|
|
140 |
|
|
// VPN
|
141 |
5ba2df71
|
Scott Ullrich
|
$vpn_menu = array();
|
142 |
|
|
$vpn_menu[] = array("IPsec", "/vpn_ipsec.php");
|
143 |
|
|
$vpn_menu[] = array("OpenVPN", "/vpn_openvpn_server.php");
|
144 |
|
|
$vpn_menu[] = array("PPTP", "/vpn_pptp.php");
|
145 |
|
|
$vpn_menu[] = array("L2TP", "/vpn_l2tp.php");
|
146 |
|
|
$vpn_menu = msort(array_merge($vpn_menu, return_ext_menu("VPN")),0);
|
147 |
5e3249f0
|
Scott Ullrich
|
|
148 |
|
|
// Status
|
149 |
|
|
$status_menu = array();
|
150 |
|
|
if (isset($config['captiveportal']['enable']))
|
151 |
|
|
$status_menu[] = array("Captive Portal", "/status_captiveportal.php");
|
152 |
|
|
$status_menu[] = array("CARP (failover)", "/carp_status.php");
|
153 |
|
|
$status_menu[] = array("Dashboard", "/index.php");
|
154 |
|
|
$status_menu[] = array("Gateways", "/status_gateways.php");
|
155 |
b9546722
|
Chris Buechler
|
$status_menu[] = array("DHCP Leases", "/status_dhcp_leases.php");
|
156 |
5e3249f0
|
Scott Ullrich
|
$status_menu[] = array("Filter Reload", "/status_filter_reload.php");
|
157 |
|
|
$status_menu[] = array("Interfaces", "/status_interfaces.php");
|
158 |
|
|
$status_menu[] = array("IPsec", "/diag_ipsec.php");
|
159 |
477dcf13
|
Chris Buechler
|
$status_menu[] = array("Load Balancer", "/status_lb_pool.php");
|
160 |
49551bbf
|
jim-p
|
$status_menu[] = array("NTP", "/status_ntpd.php");
|
161 |
5e3249f0
|
Scott Ullrich
|
$status_menu[] = array("OpenVPN", "/status_openvpn.php");
|
162 |
|
|
if ($g['platform'] == "pfSense")
|
163 |
|
|
$status_menu[] = array("Package Logs", "/diag_pkglogs.php");
|
164 |
|
|
$status_menu[] = array("Queues", "/status_queues.php");
|
165 |
|
|
$status_menu[] = array("RRD Graphs", "/status_rrd_graph.php");
|
166 |
|
|
$status_menu[] = array("Services", "/status_services.php");
|
167 |
|
|
$status_menu[] = array("System Logs", "/diag_logs.php");
|
168 |
|
|
$status_menu[] = array("Traffic Graph", "/status_graph.php?if=wan");
|
169 |
38b357bd
|
Ermal
|
if(count($config['interfaces']) > 1)
|
170 |
93b2c459
|
jim-p
|
$status_menu[] = array("UPnP & NAT-PMP", "/status_upnp.php");
|
171 |
5e3249f0
|
Scott Ullrich
|
$ifentries = get_configured_interface_with_descr();
|
172 |
|
|
foreach ($ifentries as $ent => $entdesc) {
|
173 |
|
|
if (is_array($config['interfaces'][$ent]['wireless']) &&
|
174 |
|
|
preg_match($g['wireless_regex'], $config['interfaces'][$ent]['if']))
|
175 |
273e9bf7
|
jim-p
|
$wifdescrs[$ent] = $entdesc;
|
176 |
5e3249f0
|
Scott Ullrich
|
}
|
177 |
273e9bf7
|
jim-p
|
if (count($wifdescrs) > 0)
|
178 |
5e3249f0
|
Scott Ullrich
|
$status_menu[] = array("Wireless", "/status_wireless.php");
|
179 |
|
|
$status_menu = msort(array_merge($status_menu, return_ext_menu("Status")),0);
|
180 |
|
|
|
181 |
|
|
// Diagnostics
|
182 |
5ba2df71
|
Scott Ullrich
|
$diagnostics_menu = array();
|
183 |
e6ec6b25
|
Chris Buechler
|
$diagnostics_menu[] = array("ARP Table", "/diag_arp.php");
|
184 |
3f0357fc
|
Ermal Lu?i
|
$diagnostics_menu[] = array("Authentication", "/diag_authentication.php");
|
185 |
5ba2df71
|
Scott Ullrich
|
$diagnostics_menu[] = array("Backup/Restore", "/diag_backup.php");
|
186 |
|
|
$diagnostics_menu[] = array("Command Prompt", "/exec.php");
|
187 |
|
|
$diagnostics_menu[] = array("DNS Lookup", "/diag_dns.php");
|
188 |
|
|
$diagnostics_menu[] = array("Edit File", "/edit.php");
|
189 |
|
|
$diagnostics_menu[] = array("Factory Defaults", "/diag_defaults.php");
|
190 |
|
|
$diagnostics_menu[] = array("Halt System", "/halt.php" );
|
191 |
9242ba15
|
Scott Ullrich
|
$diagnostics_menu[] = array("Limiter Info", "/diag_limiter_info.php" );
|
192 |
|
|
|
193 |
450bf4e2
|
Scott Ullrich
|
$diagnostics_menu[] = array("Tables", "/diag_tables.php");
|
194 |
5ba2df71
|
Scott Ullrich
|
$diagnostics_menu[] = array("Ping", "/diag_ping.php");
|
195 |
79992f17
|
Scott Ullrich
|
$diagnostics_menu[] = array("pfInfo", "/diag_pf_info.php");
|
196 |
a1054b46
|
Scott Ullrich
|
$diagnostics_menu[] = array("pfTop", "/diag_system_pftop.php");
|
197 |
5ba2df71
|
Scott Ullrich
|
$diagnostics_menu[] = array("Reboot", "/reboot.php");
|
198 |
|
|
$diagnostics_menu[] = array("Routes", "/diag_routes.php");
|
199 |
21f0f60d
|
jim-p
|
$diagnostics_menu[] = array("SMART Status", "/diag_smart.php");
|
200 |
5ba2df71
|
Scott Ullrich
|
$diagnostics_menu[] = array("States", "/diag_dump_states.php");
|
201 |
9d71da81
|
jim-p
|
$diagnostics_menu[] = array("States Summary", "/diag_states_summary.php");
|
202 |
5ba2df71
|
Scott Ullrich
|
$diagnostics_menu[] = array("System Activity", "/diag_system_activity.php");
|
203 |
|
|
$diagnostics_menu[] = array("Traceroute", "/diag_traceroute.php");
|
204 |
|
|
$diagnostics_menu[] = array("Packet Capture", "/diag_packet_capture.php");
|
205 |
5e3249f0
|
Scott Ullrich
|
if($g['platform'] == "nanobsd")
|
206 |
9f9e4be1
|
jim-p
|
$diagnostics_menu[] = array("NanoBSD", "/diag_nanobsd.php");
|
207 |
5e3249f0
|
Scott Ullrich
|
|
208 |
|
|
if (isset($config['system']['developer'])) {
|
209 |
|
|
echo "<li><hr width=\"80%\"/></li>";
|
210 |
9f9e4be1
|
jim-p
|
$diagnostics_menu[] = array("Restart HTTPD", "/restart_httpd.php");
|
211 |
5e3249f0
|
Scott Ullrich
|
}
|
212 |
5ba2df71
|
Scott Ullrich
|
$diagnostics_menu = msort(array_merge($diagnostics_menu, return_ext_menu("Diagnostics")),0);
|
213 |
5e3249f0
|
Scott Ullrich
|
|
214 |
3b29612f
|
Chris Buechler
|
if(! $g['disablehelpmenu']) {
|
215 |
|
|
$help_menu = array();
|
216 |
|
|
$help_menu[] = array("About this Page", $helpurl);
|
217 |
f5208bf2
|
Scott Ullrich
|
if($g['product_name'] == "pfSense")
|
218 |
998930ab
|
Scott Ullrich
|
$help_menu[] = array("Bug Database", "http://www.pfsense.org/j.php?jumpto=redmine");
|
219 |
3b29612f
|
Chris Buechler
|
$help_menu[] = array("User Forum", "http://www.pfsense.org/j.php?jumpto=forum");
|
220 |
|
|
$help_menu[] = array("Documentation", "http://www.pfsense.org/j.php?jumpto=doc");
|
221 |
|
|
$help_menu[] = array("Developers Wiki", "http://www.pfsense.org/j.php?jumpto=devwiki");
|
222 |
|
|
$help_menu[] = array("Paid Support", "http://www.pfsense.org/j.php?jumpto=portal");
|
223 |
|
|
$help_menu[] = array("pfSense Book", "http://www.pfsense.org/j.php?jumpto=book");
|
224 |
|
|
$help_menu[] = array("Search portal", "http://www.pfsense.org/j.php?jumpto=searchportal");
|
225 |
204f33f6
|
Scott Ullrich
|
$help_menu[] = array("FreeBSD Handbook", "http://www.pfsense.org/j.php?jumpto=fbsdhandbook");
|
226 |
3b29612f
|
Chris Buechler
|
$help_menu = msort(array_merge($help_menu, return_ext_menu("Help")),0);
|
227 |
|
|
}
|
228 |
669716df
|
Scott Ullrich
|
|
229 |
e93441e0
|
Scott Ullrich
|
/* NOTICE ACKNOWLEDGE CODE by Erik Kristensen */
|
230 |
|
|
if ($_REQUEST['noticeaction'] == 'acknowledge') {
|
231 |
034f08e7
|
Scott Ullrich
|
$notice_id = htmlspecialchars($_REQUEST['noticeid']);
|
232 |
e93441e0
|
Scott Ullrich
|
close_notice($notice_id);
|
233 |
|
|
}
|
234 |
|
|
/**********************************************/
|
235 |
65384707
|
Erik Kristensen
|
|
236 |
c6c150e9
|
Scott Ullrich
|
?>
|
237 |
12a00813
|
Erik Kristensen
|
|
238 |
9f53d3a8
|
Scott Ullrich
|
<div id="wrapper">
|
239 |
|
|
<div id="header">
|
240 |
9afdf058
|
Ermal
|
<div id="header-left"><a href="/index.php" id="status-link"><img src="/themes/<?= $g['theme']; ?>/images/transparent.gif" border="0"></a></div>
|
241 |
9f53d3a8
|
Scott Ullrich
|
<div id="header-right">
|
242 |
1df0159c
|
Erik Kristensen
|
<div class="container">
|
243 |
|
|
<div class="left">webConfigurator</div>
|
244 |
|
|
<div class="right">
|
245 |
64fcbfc8
|
Erik Kristensen
|
<?
|
246 |
b1cbbf24
|
Erik Kristensen
|
if (are_notices_pending()) {
|
247 |
|
|
$notices = get_notices();
|
248 |
dca32536
|
Scott Ullrich
|
|
249 |
a2046789
|
Scott Ullrich
|
$requests=array();
|
250 |
dca32536
|
Scott Ullrich
|
|
251 |
a6fac06e
|
Erik Kristensen
|
## Get Query Arguments from URL ###
|
252 |
|
|
foreach ($_REQUEST as $key => $value) {
|
253 |
|
|
if ($key != "PHPSESSID")
|
254 |
|
|
$requests[] = $key.'='.$value;
|
255 |
|
|
}
|
256 |
a2046789
|
Scott Ullrich
|
if(is_array($requests))
|
257 |
|
|
$request_string = implode("&", $requests);
|
258 |
a6fac06e
|
Erik Kristensen
|
|
259 |
35eef977
|
Scott Ullrich
|
if(is_array($notices)) {
|
260 |
|
|
foreach ($notices as $key => $value) {
|
261 |
|
|
$date = date("m-d-y H:i:s", $key);
|
262 |
|
|
$noticemsg = str_replace("'", "", $value['notice']);
|
263 |
|
|
$noticemsg = str_replace('"', "", $noticemsg);
|
264 |
|
|
$noticemsg = str_replace("\n", "", $noticemsg);
|
265 |
|
|
$noticemsg = str_replace("<p>", "", $noticemsg);
|
266 |
|
|
$noticemsg = str_replace("<pre>", "", $noticemsg);
|
267 |
|
|
$noticemsg = str_replace("</pre>", "", $noticemsg);
|
268 |
|
|
$noticemsg = str_replace("</p>", "", $noticemsg);
|
269 |
|
|
$noticemsg = str_replace("<br>", "", $noticemsg);
|
270 |
91d3d442
|
Scott Ullrich
|
$extra_args = "";
|
271 |
|
|
if($_GET['xml'])
|
272 |
060d4c5e
|
jim-p
|
$extraargs="&xml=" . htmlspecialchars($_GET['xml']);
|
273 |
91d3d442
|
Scott Ullrich
|
if($_POST['xml'])
|
274 |
060d4c5e
|
jim-p
|
$extraargs="&xml=" . htmlspecialchars($_POST['xml']);
|
275 |
91d3d442
|
Scott Ullrich
|
if($_GET['id'])
|
276 |
060d4c5e
|
jim-p
|
$extraargs="&xml=" . htmlspecialchars($_GET['id']);
|
277 |
91d3d442
|
Scott Ullrich
|
if($_POST['id'])
|
278 |
060d4c5e
|
jim-p
|
$extraargs="&xml=" . htmlspecialchars($_POST['id']);
|
279 |
91d3d442
|
Scott Ullrich
|
$notice_msgs = '<a href="?noticeaction=acknowledge¬iceid=all' . $extraargs . '">Acknowledge All</a> .:. ';
|
280 |
35eef977
|
Scott Ullrich
|
if ($value['url']) {
|
281 |
190d5d58
|
jim-p
|
$notice_msgs .= $date.' - <a href="'.$url.'?' . htmlspecialchars($request_string) . '¬iceaction=acknowledge¬iceid='.$key.'">['.$value['id'].']</a>';
|
282 |
35eef977
|
Scott Ullrich
|
} else {
|
283 |
f01d8c49
|
jim-p
|
$notice_msgs .= $date.' - <a href="?' . htmlspecialchars($request_string) . '¬iceaction=acknowledge¬iceid='.$key.'">['.$value['id'].']'.htmlspecialchars($noticemsg).'</a>';
|
284 |
35eef977
|
Scott Ullrich
|
}
|
285 |
|
|
$notice_msgs .= " .:. ";
|
286 |
b1cbbf24
|
Erik Kristensen
|
}
|
287 |
|
|
}
|
288 |
64fcbfc8
|
Erik Kristensen
|
?>
|
289 |
b1cbbf24
|
Erik Kristensen
|
<div id="alerts">
|
290 |
|
|
<script type="text/javascript">
|
291 |
|
|
var content='<div id="marquee-text"><?= $notice_msgs; ?></div>'
|
292 |
|
|
</script>
|
293 |
625dcc40
|
Bill Marquette
|
<script type="text/javascript" src="/javascript/ticker.js"></script>
|
294 |
b1cbbf24
|
Erik Kristensen
|
</div>
|
295 |
|
|
<?
|
296 |
|
|
} else {
|
297 |
612832ec
|
Erik Kristensen
|
?>
|
298 |
|
|
<div id="hostname">
|
299 |
|
|
<? print $config['system']['hostname'] . "." . $config['system']['domain']; ?>
|
300 |
|
|
</div>
|
301 |
|
|
<?
|
302 |
b1cbbf24
|
Erik Kristensen
|
}
|
303 |
|
|
?>
|
304 |
1df0159c
|
Erik Kristensen
|
</div>
|
305 |
|
|
</div>
|
306 |
9f53d3a8
|
Scott Ullrich
|
</div>
|
307 |
|
|
</div> <!-- Header DIV -->
|
308 |
|
|
<div id="content">
|
309 |
|
|
<div id="left">
|
310 |
2779b49b
|
Scott Dale
|
<div id="navigation" style="z-index:1000">
|
311 |
41058a8c
|
Erik Kristensen
|
<ul id="menu">
|
312 |
d86286ed
|
Erik Kristensen
|
<li class="firstdrop">
|
313 |
9f53d3a8
|
Scott Ullrich
|
<div>System</div>
|
314 |
d86286ed
|
Erik Kristensen
|
<ul class="subdrop">
|
315 |
7cf210f1
|
Ermal Lu?i
|
<?php
|
316 |
5ba2df71
|
Scott Ullrich
|
output_menu($system_menu);
|
317 |
7cf210f1
|
Ermal Lu?i
|
?>
|
318 |
9f53d3a8
|
Scott Ullrich
|
</ul>
|
319 |
|
|
</li>
|
320 |
d86286ed
|
Erik Kristensen
|
<li class="drop">
|
321 |
|
|
<div>Interfaces</div>
|
322 |
|
|
<ul class="subdrop">
|
323 |
7cf210f1
|
Ermal Lu?i
|
<?php
|
324 |
5ba2df71
|
Scott Ullrich
|
output_menu($interfaces_menu);
|
325 |
7cf210f1
|
Ermal Lu?i
|
?>
|
326 |
9f53d3a8
|
Scott Ullrich
|
</ul>
|
327 |
|
|
</li>
|
328 |
d86286ed
|
Erik Kristensen
|
<li class="drop">
|
329 |
9f53d3a8
|
Scott Ullrich
|
<div>Firewall</div>
|
330 |
d86286ed
|
Erik Kristensen
|
<ul class="subdrop">
|
331 |
7cf210f1
|
Ermal Lu?i
|
<?php
|
332 |
5ba2df71
|
Scott Ullrich
|
output_menu($firewall_menu);
|
333 |
7cf210f1
|
Ermal Lu?i
|
?>
|
334 |
9f53d3a8
|
Scott Ullrich
|
</ul>
|
335 |
|
|
</li>
|
336 |
d86286ed
|
Erik Kristensen
|
<li class="drop">
|
337 |
9f53d3a8
|
Scott Ullrich
|
<div>Services</div>
|
338 |
d86286ed
|
Erik Kristensen
|
<ul class="subdrop">
|
339 |
7cf210f1
|
Ermal Lu?i
|
<?
|
340 |
5ba2df71
|
Scott Ullrich
|
output_menu($services_menu);
|
341 |
7cf210f1
|
Ermal Lu?i
|
?>
|
342 |
9f53d3a8
|
Scott Ullrich
|
</ul>
|
343 |
|
|
</li>
|
344 |
d86286ed
|
Erik Kristensen
|
<li class="drop">
|
345 |
9f53d3a8
|
Scott Ullrich
|
<div>VPN</div>
|
346 |
d86286ed
|
Erik Kristensen
|
<ul class="subdrop">
|
347 |
7cf210f1
|
Ermal Lu?i
|
<?php
|
348 |
5ba2df71
|
Scott Ullrich
|
output_menu($vpn_menu);
|
349 |
7cf210f1
|
Ermal Lu?i
|
?>
|
350 |
9f53d3a8
|
Scott Ullrich
|
</ul>
|
351 |
|
|
</li>
|
352 |
d86286ed
|
Erik Kristensen
|
<li class="drop">
|
353 |
9f53d3a8
|
Scott Ullrich
|
<div>Status</div>
|
354 |
d86286ed
|
Erik Kristensen
|
<ul class="subdrop">
|
355 |
7cf210f1
|
Ermal Lu?i
|
<?php
|
356 |
5e3249f0
|
Scott Ullrich
|
output_menu($status_menu);
|
357 |
7cf210f1
|
Ermal Lu?i
|
?>
|
358 |
9f53d3a8
|
Scott Ullrich
|
</ul>
|
359 |
|
|
</li>
|
360 |
669716df
|
Scott Ullrich
|
<li class="drop">
|
361 |
9f53d3a8
|
Scott Ullrich
|
<div>Diagnostics</div>
|
362 |
d86286ed
|
Erik Kristensen
|
<ul id="diag" class="subdrop">
|
363 |
7cf210f1
|
Ermal Lu?i
|
<?
|
364 |
5ba2df71
|
Scott Ullrich
|
output_menu($diagnostics_menu);
|
365 |
7cf210f1
|
Ermal Lu?i
|
?>
|
366 |
9f53d3a8
|
Scott Ullrich
|
</ul>
|
367 |
|
|
</li>
|
368 |
3b29612f
|
Chris Buechler
|
<?php if(! $g['disablehelpmenu']): ?>
|
369 |
669716df
|
Scott Ullrich
|
<li class="lastdrop">
|
370 |
|
|
<div>Help</div>
|
371 |
|
|
<ul id="help" class="subdrop">
|
372 |
|
|
<?
|
373 |
471ce716
|
Scott Ullrich
|
output_menu($help_menu, "_new");
|
374 |
669716df
|
Scott Ullrich
|
?>
|
375 |
|
|
</ul>
|
376 |
|
|
</li>
|
377 |
3b29612f
|
Chris Buechler
|
<?php endif; ?>
|
378 |
9f53d3a8
|
Scott Ullrich
|
</ul>
|
379 |
|
|
</div>
|
380 |
dca32536
|
Scott Ullrich
|
|
381 |
9f53d3a8
|
Scott Ullrich
|
</div> <!-- Left DIV -->
|
382 |
dca32536
|
Scott Ullrich
|
|
383 |
9f53d3a8
|
Scott Ullrich
|
<div id="right">
|
384 |
dca32536
|
Scott Ullrich
|
|
385 |
5c9cc1de
|
Scott Ullrich
|
<?php
|
386 |
45ee90ed
|
Matthew Grooms
|
|
387 |
5c9cc1de
|
Scott Ullrich
|
/* display a top alert bar if need be */
|
388 |
|
|
$need_alert_display = false;
|
389 |
|
|
$found_notices = are_notices_pending();
|
390 |
|
|
if($found_notices == true) {
|
391 |
|
|
$notices = get_notices();
|
392 |
|
|
if(!$notices) {
|
393 |
|
|
$need_alert_display = true;
|
394 |
efe8fa78
|
jim-p
|
$display_text = print_notices($notices) . "<br>";
|
395 |
dca32536
|
Scott Ullrich
|
}
|
396 |
5c9cc1de
|
Scott Ullrich
|
}
|
397 |
|
|
if($need_alert_display == true) {
|
398 |
|
|
echo "<div style=\"background-color:#000000\" id=\"roundalert\">";
|
399 |
|
|
echo "<table>";
|
400 |
|
|
echo "<tr><td><font color=\"#ffffff\">";
|
401 |
|
|
echo " <img align=\"middle\" src=\"/top_notification.gif\"> ";
|
402 |
|
|
echo $display_text;
|
403 |
|
|
echo "</td>";
|
404 |
|
|
echo "</tr>";
|
405 |
|
|
echo "</table>";
|
406 |
|
|
echo "</div>";
|
407 |
|
|
}
|
408 |
b8f82cd7
|
Scott Ullrich
|
|
409 |
5e3249f0
|
Scott Ullrich
|
function add_to_menu($url, $name) {
|
410 |
45ee90ed
|
Matthew Grooms
|
if (isAllowedPage($url))
|
411 |
|
|
echo "<li><a href=\"{$url}\" class=\"navlnk\">{$name}</a></li>\n";
|
412 |
b8f82cd7
|
Scott Ullrich
|
}
|
413 |
19b331c1
|
Scott Ullrich
|
?>
|
414 |
dca32536
|
Scott Ullrich
|
|
415 |
f7eae2bf
|
jim-p
|
<div>
|
416 |
e6c563bb
|
jim-p
|
<span class="pgtitle"><a href="<?= $_SERVER['SCRIPT_NAME'] ?>"><?=genhtmltitle($pgtitle);?></a></span>
|
417 |
c2e23f7b
|
jim-p
|
<span style="float:right; margin: 0 0 20px 20px;">
|
418 |
|
|
<?php if(! empty($statusurl)): ?>
|
419 |
|
|
<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>
|
420 |
|
|
<?php endif; ?>
|
421 |
|
|
<?php if(! empty($logurl)): ?>
|
422 |
|
|
<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>
|
423 |
|
|
<?php endif; ?>
|
424 |
28181237
|
Renato Botelho
|
<?php if(! $g['disablehelpicon']): ?>
|
425 |
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>
|
426 |
28181237
|
Renato Botelho
|
<?php endif; ?>
|
427 |
c2e23f7b
|
jim-p
|
</span>
|
428 |
f7eae2bf
|
jim-p
|
</div>
|
429 |
|
|
<br />
|
430 |
b873ded5
|
jim-p
|
|
431 |
366e5d8c
|
sullrich
|
<?php
|
432 |
261c7de8
|
jim-p
|
/* if upgrade in progress, alert user */
|
433 |
|
|
if(is_subsystem_dirty('packagelock')) {
|
434 |
|
|
$pgtitle = array(gettext("System"),gettext("Package Manager"));
|
435 |
|
|
print_info_box(gettext("Packages are currently being reinstalled in the background.<p>Do not make changes in the GUI until this is complete.") . "<p><img src='/themes/{$g['theme']}/images/icons/icon_fw-update.gif'>");
|
436 |
|
|
}
|
437 |
366e5d8c
|
sullrich
|
$pgtitle_output = true;
|
438 |
43f26ab1
|
Ermal
|
?>
|