system_general.php 23.2 KB
Newer Older
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
<?php

/*
	Copyright (C) 2014-2015 Deciso B.V.
	Copyright (C) 2003-2004 Manuel Kasper <mk@neon1.net>.
	All rights reserved.

	Redistribution and use in source and binary forms, with or without
	modification, are permitted provided that the following conditions are met:

	1. Redistributions of source code must retain the above copyright notice,
	   this list of conditions and the following disclaimer.

	2. Redistributions in binary form must reproduce the above copyright
	   notice, this list of conditions and the following disclaimer in the
	   documentation and/or other materials provided with the distribution.

	THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES,
	INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY
	AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
	AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY,
	OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
	SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
	INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
	CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
	ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
	POSSIBILITY OF SUCH DAMAGE.
*/

require_once("guiconfig.inc");
require_once("filter.inc");
32 33
require_once("system.inc");
require_once("unbound.inc");
34
require_once("pfsense-utils.inc");
35
require_once("interfaces.inc");
36
require_once("services.inc");
37 38 39

function get_locale_list()
{
40 41
	$locales = array();

42
	/* first one is the default */
43 44
	$locales['en_US'] = gettext('English');
	$locales['de_DE'] = gettext('German');
45 46 47
	$locales['es_CO'] = gettext('Spanish');
	$locales['fr_FR'] = gettext('French');
	$locales['ja_JP'] = gettext('Japanese');
48
	$locales['zh_CN'] = gettext('Chinese (Simplified)');
49

50 51 52 53 54
	return $locales;
}

$pconfig['hostname'] = $config['system']['hostname'];
$pconfig['domain'] = $config['system']['domain'];
55 56 57 58 59
if (isset($config['system']['dnsserver'])) {
	list($pconfig['dns1'],$pconfig['dns2'],$pconfig['dns3'],$pconfig['dns4']) = $config['system']['dnsserver'];
} else {
	list($pconfig['dns1'],$pconfig['dns2'],$pconfig['dns3'],$pconfig['dns4']) = null;
}
60 61 62

$arr_gateways = return_gateways_array();

63 64 65
if (isset($config['system']['dns1gw'])) {
	$pconfig['dns1gw'] = $config['system']['dns1gw'];
} else {
66
	$pconfig['dns1gw'] = null;
67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82
}
if (isset($config['system']['dns2gw'])) {
	$pconfig['dns2gw'] = $config['system']['dns2gw'];
} else {
	$pconfig['dns2gw'] = null;
}
if (isset($config['system']['dns3gw'])) {
	$pconfig['dns3gw'] = $config['system']['dns3gw'];
} else {
	$pconfig['dns3gw'] = null;
}
if (isset($config['system']['dns4gw'])) {
	$pconfig['dns4gw'] = $config['system']['dns4gw'];
} else {
	$pconfig['dns4gw'] = null ;
}
83 84 85 86 87

$pconfig['dnsallowoverride'] = isset($config['system']['dnsallowoverride']);
$pconfig['timezone'] = $config['system']['timezone'];
$pconfig['timeupdateinterval'] = $config['system']['time-update-interval'];
$pconfig['timeservers'] = $config['system']['timeservers'];
88 89 90 91 92 93 94 95 96 97
if (isset($config['system']['theme'])) {
	$pconfig['theme'] = $config['system']['theme'];
} else {
	$pconfig['theme'] = null;
}
if (isset($config['system']['language'])) {
	$pconfig['language'] = $config['system']['language'];
} else {
	$pconfig['language'] = null;
}
98 99 100 101 102

$pconfig['dnslocalhost'] = isset($config['system']['dnslocalhost']);

if (!isset($pconfig['timeupdateinterval']))
	$pconfig['timeupdateinterval'] = 300;
103
if (empty($pconfig['timezone']))
104
	$pconfig['timezone'] = "Etc/UTC";
105
if (empty($pconfig['timeservers']))
106 107
	$pconfig['timeservers'] = "pool.ntp.org";

108 109 110 111 112 113 114 115 116 117
$pconfig['mirror'] = 'default';
if (isset($config['system']['firmware']['mirror'])) {
	$pconfig['mirror'] = $config['system']['firmware']['mirror'];
}

$pconfig['flavour'] = 'default';
if (isset($config['system']['firmware']['flavour'])) {
	$pconfig['flavour'] = $config['system']['firmware']['flavour'];
}

118 119 120
$changedesc = gettext("System") . ": ";
$changecount = 0;

121
if (isset($_POST['timezone']) && $pconfig['timezone'] <> $_POST['timezone']) {
122
	filter_pflog_start();
123 124
}

125
$timezonelist = get_zoneinfo();
126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215

$multiwan = false;
$interfaces = get_configured_interface_list();
foreach($interfaces as $interface) {
	if(interface_has_gateway($interface)) {
		$multiwan = true;
	}
}

if ($_POST) {

	$changecount++;

	unset($input_errors);
	$pconfig = $_POST;

	/* input validation */
	$reqdfields = explode(" ", "hostname domain");
	$reqdfieldsn = array(gettext("Hostname"),gettext("Domain"));

	do_input_validation($_POST, $reqdfields, $reqdfieldsn, $input_errors);

	if ($_POST['hostname'] && !is_hostname($_POST['hostname'])) {
		$input_errors[] = gettext("The hostname may only contain the characters a-z, 0-9 and '-'.");
	}
	if ($_POST['domain'] && !is_domain($_POST['domain'])) {
		$input_errors[] = gettext("The domain may only contain the characters a-z, 0-9, '-' and '.'.");
	}

	$ignore_posted_dnsgw = array();

	for ($dnscounter=1; $dnscounter<5; $dnscounter++){
		$dnsname="dns{$dnscounter}";
		$dnsgwname="dns{$dnscounter}gw";
		if (($_POST[$dnsname] && !is_ipaddr($_POST[$dnsname]))) {
			$input_errors[] = gettext("A valid IP address must be specified for DNS server $dnscounter.");
		} else {
			if(($_POST[$dnsgwname] <> "") && ($_POST[$dnsgwname] <> "none")) {
				// A real gateway has been selected.
				if (is_ipaddr($_POST[$dnsname])) {
					if ((is_ipaddrv4($_POST[$dnsname])) && (validate_address_family($_POST[$dnsname], $_POST[$dnsgwname]) === false )) {
						$input_errors[] = gettext("You can not specify IPv6 gateway '{$_POST[$dnsgwname]}' for IPv4 DNS server '{$_POST[$dnsname]}'");
					}
					if ((is_ipaddrv6($_POST[$dnsname])) && (validate_address_family($_POST[$dnsname], $_POST[$dnsgwname]) === false )) {
						$input_errors[] = gettext("You can not specify IPv4 gateway '{$_POST[$dnsgwname]}' for IPv6 DNS server '{$_POST[$dnsname]}'");
					}
				} else {
					// The user selected a gateway but did not provide a DNS address. Be nice and set the gateway back to "none".
					$ignore_posted_dnsgw[$dnsgwname] = true;
				}
			}
		}
	}

	$direct_networks_list = explode(" ", filter_get_direct_networks_list());
	for ($dnscounter=1; $dnscounter<5; $dnscounter++) {
		$dnsitem = "dns{$dnscounter}";
		$dnsgwitem = "dns{$dnscounter}gw";
		if ($_POST[$dnsgwitem]) {
			if(interface_has_gateway($_POST[$dnsgwitem])) {
				foreach($direct_networks_list as $direct_network) {
					if(ip_in_subnet($_POST[$dnsitem], $direct_network)) {
						$input_errors[] = sprintf(gettext("You can not assign a gateway to DNS '%s' server which is on a directly connected network."),$_POST[$dnsitem]);
					}
				}
			}
		}
	}

	$t = (int)$_POST['timeupdateinterval'];
	if (($t < 0) || (($t > 0) && ($t < 6)) || ($t > 1440)) {
		$input_errors[] = gettext("The time update interval must be either 0 (disabled) or between 6 and 1440.");
	}
	# it's easy to have a little too much whitespace in the field, clean it up for the user before processing.
	$_POST['timeservers'] = preg_replace('/[[:blank:]]+/', ' ', $_POST['timeservers']);
	$_POST['timeservers'] = trim($_POST['timeservers']);
	foreach (explode(' ', $_POST['timeservers']) as $ts) {
		if (!is_domain($ts)) {
			$input_errors[] = gettext("A NTP Time Server name may only contain the characters a-z, 0-9, '-' and '.'.");
		}
	}

	if (!$input_errors) {
		update_if_changed("hostname", $config['system']['hostname'], $_POST['hostname']);
		update_if_changed("domain", $config['system']['domain'], $_POST['domain']);

		update_if_changed("timezone", $config['system']['timezone'], $_POST['timezone']);
		update_if_changed("NTP servers", $config['system']['timeservers'], strtolower($_POST['timeservers']));
		update_if_changed("NTP update interval", $config['system']['time-update-interval'], $_POST['timeupdateinterval']);

216
		if ($_POST['language'] && $_POST['language'] != $config['system']['language']) {
217 218 219 220
			$config['system']['language'] = $_POST['language'];
			set_language($config['system']['language']);
		}

221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236
		if (!isset($config['system']['firmware'])) {
			$config['system']['firmware'] = array();
		}
		if ($_POST['mirror'] == 'default' && isset($config['system']['firmware']['mirror'])) {
			/* default does not set anything for backwards compat */
			unset($config['system']['firmware']['mirror']);
		} else {
			$config['system']['firmware']['mirror'] = $_POST['mirror'];
		}
		if ($_POST['flavour'] == 'default' && isset($config['system']['firmware']['flavour'])) {
			/* default does not set anything for backwards compat */
			unset($config['system']['firmware']['flavour']);
		} else {
			$config['system']['firmware']['flavour'] = $_POST['flavour'];
		}

237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317
		update_if_changed("System Theme", $config['theme'], $_POST['theme']);

		/* XXX - billm: these still need updating after figuring out how to check if they actually changed */
		$olddnsservers = $config['system']['dnsserver'];
		unset($config['system']['dnsserver']);
		if ($_POST['dns1'])
			$config['system']['dnsserver'][] = $_POST['dns1'];
		if ($_POST['dns2'])
			$config['system']['dnsserver'][] = $_POST['dns2'];
		if ($_POST['dns3'])
			$config['system']['dnsserver'][] = $_POST['dns3'];
		if ($_POST['dns4'])
			$config['system']['dnsserver'][] = $_POST['dns4'];

		$olddnsallowoverride = $config['system']['dnsallowoverride'];

		unset($config['system']['dnsallowoverride']);
		$config['system']['dnsallowoverride'] = $_POST['dnsallowoverride'] ? true : false;

		if($_POST['dnslocalhost'] == "yes")
			$config['system']['dnslocalhost'] = true;
		else
			unset($config['system']['dnslocalhost']);

		/* which interface should the dns servers resolve through? */
		$outdnscounter = 0;
		for ($dnscounter=1; $dnscounter<5; $dnscounter++) {
			$dnsname="dns{$dnscounter}";
			$dnsgwname="dns{$dnscounter}gw";
			$olddnsgwname = $config['system'][$dnsgwname];

			if ($ignore_posted_dnsgw[$dnsgwname])
				$thisdnsgwname = "none";
			else
				$thisdnsgwname = $pconfig[$dnsgwname];

			// "Blank" out the settings for this index, then we set them below using the "outdnscounter" index.
			$config['system'][$dnsgwname] = "none";
			$pconfig[$dnsgwname] = "none";
			$pconfig[$dnsname] = "";

			if ($_POST[$dnsname]) {
				// Only the non-blank DNS servers were put into the config above.
				// So we similarly only add the corresponding gateways sequentially to the config (and to pconfig), as we find non-blank DNS servers.
				// This keeps the DNS server IP and corresponding gateway "lined up" when the user blanks out a DNS server IP in the middle of the list.
				$outdnscounter++;
				$outdnsname="dns{$outdnscounter}";
				$outdnsgwname="dns{$outdnscounter}gw";
				$pconfig[$outdnsname] = $_POST[$dnsname];
				if($_POST[$dnsgwname]) {
					$config['system'][$outdnsgwname] = $thisdnsgwname;
					$pconfig[$outdnsgwname] = $thisdnsgwname;
				} else {
					// Note: when no DNS GW name is chosen, the entry is set to "none", so actually this case never happens.
					unset($config['system'][$outdnsgwname]);
					$pconfig[$outdnsgwname] = "";
				}
			}
			if (($olddnsgwname != "") && ($olddnsgwname != "none") && (($olddnsgwname != $thisdnsgwname) || ($olddnsservers[$dnscounter-1] != $_POST[$dnsname]))) {
				// A previous DNS GW name was specified. It has now gone or changed, or the DNS server address has changed.
				// Remove the route. Later calls will add the correct new route if needed.
				if (is_ipaddrv4($olddnsservers[$dnscounter-1]))
					mwexec("/sbin/route delete " . escapeshellarg($olddnsservers[$dnscounter-1]));
				else
					if (is_ipaddrv6($olddnsservers[$dnscounter-1]))
						mwexec("/sbin/route delete -inet6 " . escapeshellarg($olddnsservers[$dnscounter-1]));
			}
		}

		if ($changecount > 0)
			write_config($changedesc);

		$retval = 0;
		$retval = system_hostname_configure();
		$retval |= system_hosts_generate();
		$retval |= system_resolvconf_generate();
		if (isset($config['dnsmasq']['enable']))
			$retval |= services_dnsmasq_configure();
		elseif (isset($config['unbound']['enable']))
			$retval |= services_unbound_configure();
		$retval |= system_timezone_configure();
318
		$retval |= system_firmware_configure();
319 320 321 322 323 324 325 326 327 328 329 330 331 332 333
		$retval |= system_ntp_configure();

		if ($olddnsallowoverride != $config['system']['dnsallowoverride']) {
			configd_run("dns reload");
		}

		// Reload the filter - plugins might need to be run.
		$retval |= filter_configure();

		$savemsg = get_std_save_message($retval);
	}

	unset($ignore_posted_dnsgw);
}

334
$pgtitle = array(gettext("System"),gettext("Settings"),gettext("General"));
335 336 337 338 339 340 341 342 343 344 345 346 347
include("head.inc");

?>

<body>
    <?php include("fbegin.inc"); ?>

<!-- row -->
<section class="page-content-main">
	<div class="container-fluid">

        <div class="row">
            <?php
348
		if (isset($input_errors) && count($input_errors) > 0) print_input_errors($input_errors);
349
		if (isset($savemsg)) print_info_box($savemsg);
350 351
            ?>
            <section class="col-xs-12">
352
                <? include('system_advanced_tabs.inc'); ?>
353
                <div class="content-box tab-content">
354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518

			<form action="system_general.php" method="post">
				<table width="100%" border="0" cellpadding="6" cellspacing="0" summary="main area" class="table table-striped">
					<thead>
						<tr>
							<th colspan="2" valign="top" class="listtopic"><?=gettext("System"); ?></th>
						</tr>
					</thead>
					<tbody>
						<tr>
							<td width="22%" valign="top" class="vncellreq"><?=gettext("Hostname"); ?></td>
							<td width="78%" class="vtable"> <input name="hostname" type="text" class="formfld unknown" id="hostname" size="40" value="<?=htmlspecialchars($pconfig['hostname']);?>" />
								<br />
								<span class="vexpl">
									<?=gettext("Name of the firewall host, without domain part"); ?>
									<br />
									<?=gettext("e.g."); ?> <em>firewall</em>
								</span>
							</td>
						</tr>
						<tr>
							<td width="22%" valign="top" class="vncellreq"><?=gettext("Domain"); ?></td>
							<td width="78%" class="vtable"> <input name="domain" type="text" class="formfld unknown" id="domain" size="40" value="<?=htmlspecialchars($pconfig['domain']);?>" />
								<br />
								<span class="vexpl">
									<?=gettext("Do not use 'local' as a domain name. It will cause local hosts running mDNS (avahi, bonjour, etc.) to be unable to resolve local hosts not running mDNS."); ?>
									<br />
									<?=gettext("e.g."); ?> <em><?=gettext("mycorp.com, home, office, private, etc."); ?></em>
								</span>
							</td>
						</tr>
						<tr>
							<td width="22%" valign="top" class="vncell"><?=gettext("DNS servers"); ?></td>
							<td width="78%" class="vtable">

								<table border="0" cellpadding="0" cellspacing="0" summary="dns servers and gateways" class="table table-striped">
									<thead>
										<tr>
											<th><?=gettext("DNS Server"); ?></th>
											<?php if ($multiwan): ?>
											<th><?=gettext("Use gateway"); ?></th>
											<?php endif; ?>
										</tr>
									</thead>
									<tbody>
									<?php
										for ($dnscounter=1; $dnscounter<5; $dnscounter++):
											$fldname="dns{$dnscounter}gw";
									?>
									<tr>
										<td width="348px">
											<input name="dns<?php echo $dnscounter;?>" type="text" class="formfld unknown" id="dns<?php echo $dnscounter;?>" size="28" value="<?php echo $pconfig['dns'.$dnscounter];?>" />
										</td>
										<td>
                                                    <?php if ($multiwan): ?>
											<select name='<?=$fldname;?>' class='selectpicker' data-style='btn-default' data-width='auto'>
												<?php
													$gwname = "none";
													$dnsgw = "dns{$dnscounter}gw";
													if($pconfig[$dnsgw] == $gwname) {
														$selected = "selected=\"selected\"";
													} else {
														$selected = "";
													}
													echo "<option value='$gwname' $selected>$gwname</option>\n";
													foreach($arr_gateways as $gwname => $gwitem) {
														//echo $pconfig[$dnsgw];
														if((is_ipaddrv4(lookup_gateway_ip_by_name($pconfig[$dnsgw])) && (is_ipaddrv6($gwitem['gateway'])))) {
															continue;
														}
														if((is_ipaddrv6(lookup_gateway_ip_by_name($pconfig[$dnsgw])) && (is_ipaddrv4($gwitem['gateway'])))) {
															continue;
														}
														if($pconfig[$dnsgw] == $gwname) {
															$selected = "selected=\"selected\"";
														} else {
															$selected = "";
														}
														echo "<option value='$gwname' $selected>$gwname - {$gwitem['friendlyiface']} - {$gwitem['gateway']}</option>\n";
													}
												?>
											</select>
                                                        <?php endif; ?>
										</td>
									</tr>
									<?php endfor; ?>
									</tbody>
								</table>

								<span class="vexpl">
									<?=gettext("Enter IP addresses to be used by the system for DNS resolution. " .
									"These are also used for the DHCP service, DNS forwarder and for PPTP VPN clients."); ?>
									<br />
									<?php if($multiwan): ?>
									<br />
									<?=gettext("In addition, optionally select the gateway for each DNS server. " .
									"When using multiple WAN connections there should be at least one unique DNS server per gateway."); ?>
									<br />
									<?php endif; ?>
									<br />
									<input name="dnsallowoverride" type="checkbox" id="dnsallowoverride" value="yes" <?php if ($pconfig['dnsallowoverride']) echo "checked=\"checked\""; ?> />
									<strong>
										<?=gettext("Allow DNS server list to be overridden by DHCP/PPP on WAN"); ?>
									</strong>
									<br />
									<?php printf(gettext("If this option is set, %s will " .
									"use DNS servers assigned by a DHCP/PPP server on WAN " .
									"for its own purposes (including the DNS forwarder). " .
									"However, they will not be assigned to DHCP and PPTP " .
									"VPN clients."), $g['product_name']); ?>
									<br />
									<br />
									<input name="dnslocalhost" type="checkbox" id="dnslocalhost" value="yes" <?php if ($pconfig['dnslocalhost']) echo "checked=\"checked\""; ?> />
									<strong>
										<?=gettext("Do not use the DNS Forwarder as a DNS server for the firewall"); ?>
									</strong>
									<br />
									<?=gettext("By default localhost (127.0.0.1) will be used as the first DNS server where the DNS Forwarder or DNS Resolver is enabled and set to listen on Localhost, so system can use the local DNS service to perform lookups. ".
									"Checking this box omits localhost from the list of DNS servers."); ?>
								</span>

							</td>
						</tr>
						<tr>
							<td width="22%" valign="top" class="vncell"><?=gettext("Time zone"); ?></td>
							<td width="78%" class="vtable">
								<select name="timezone" id="timezone" class="selectpicker" data-style="btn-default" data-live-search="true">
									<?php foreach ($timezonelist as $value): ?>
									<?php if(strstr($value, "GMT")) continue; ?>
									<option value="<?=htmlspecialchars($value);?>" <?php if ($value == $pconfig['timezone']) echo "selected=\"selected\""; ?>>
										<?=htmlspecialchars($value);?>
									</option>
									<?php endforeach; ?>
								</select>
								<br />
								<span class="vexpl">
									<?=gettext("Select the location closest to you"); ?>
								</span>
							</td>
						</tr>
                        <!--
						<tr>
							<td width="22%" valign="top" class="vncell">Time update interval</td>
							<td width="78%" class="vtable">
								<input name="timeupdateinterval" type="text" class="formfld unknown" id="timeupdateinterval" size="4" value="<?=htmlspecialchars($pconfig['timeupdateinterval']);?>" />
								<br />
								<span class="vexpl">
									Minutes between network time sync. 300 recommended,
									or 0 to disable
								</span>
							</td>
						</tr>
                        -->
						<tr>
							<td width="22%" valign="top" class="vncell"><?=gettext("NTP time server"); ?></td>
							<td width="78%" class="vtable">
								<input name="timeservers" type="text" class="formfld unknown" id="timeservers" size="40" value="<?=htmlspecialchars($pconfig['timeservers']);?>" />
								<br />
								<span class="vexpl">
									<?=gettext("Use a space to separate multiple hosts (only one " .
									"required). Remember to set up at least one DNS server " .
									"if you enter a host name here!"); ?>
								</span>
							</td>
						</tr>
519 520
						<tr>
							<td width="22%" valign="top" class="vncell"><?=gettext("Language");?></td>
521 522 523
							<td width="78%" class="vtable">
								<select name="language" class="selectpicker" data-style="btn-default" data-width="auto">
									<?php
524
									foreach (get_locale_list() as $lcode => $ldesc) {
525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559
										$selected = ' selected="selected"';
										if($lcode != $pconfig['language'])
											$selected = '';
										echo "<option value=\"{$lcode}\"{$selected}>{$ldesc}</option>";
									}
									?>
								</select>
								<strong>
									<?=gettext("Choose a language for the webConfigurator"); ?>
								</strong>
							</td>
						</tr>
						<tr>
							<td width="22%" valign="top" class="vncell"><?=gettext("Theme"); ?></td>
							<td width="78%" class="vtable">
								<select name="theme" class="selectpicker" data-style="btn-default" data-width="auto">
									<?php
										$files = return_dir_as_array('/usr/local/www/themes/');
										$curtheme = get_current_theme();

										foreach ($files as $file):
											$selected = '';
											if ($file == $curtheme) {
												$selected = ' selected="selected"';
											}
									?>
									<option <?=$selected;?>><?=$file;?></option>
									<?php endforeach; ?>
								</select>
								<strong>
									<?=gettext("This will change the look and feel of"); ?>
									<?=$g['product_name'];?>.
								</strong>
							</td>
						</tr>
560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597
						<tr>
							<td width="22%" valign="top" class="vncell"><?=gettext("Firmware Mirror"); ?></td>
							<td width="78%" class="vtable">
								<select name="mirror" class="selectpicker" data-style="btn-default" data-width="auto">
									<?php
									foreach (get_firmware_mirrors() as $mcode => $mdesc) {
										$selected = ' selected="selected"';
										if($mcode != $pconfig['mirror']) {
											$selected = '';
										}
										echo "<option value=\"{$mcode}\"{$selected}>{$mdesc}</option>";
									}
									?>
								</select>
								<strong>
									<?=gettext("Select an alternate firmware mirror."); ?>
								</strong>
							</td>
						</tr>
						<tr>
							<td width="22%" valign="top" class="vncell"><?=gettext("Firmware Flavour"); ?></td>
							<td width="78%" class="vtable">
								<select name="flavour" class="selectpicker" data-style="btn-default" data-width="auto">
									<?php
									foreach (get_firmware_flavours() as $fcode => $fdesc) {
										$selected = ' selected="selected"';
										if($fcode != $pconfig['flavour']) {
											$selected = '';
										}
										echo "<option value=\"{$fcode}\"{$selected}>{$fdesc}</option>";
									}
									?>
								</select>
								<strong>
									<?=gettext("Select the firmware cryptography flavour."); ?>
								</strong>
							</td>
						</tr>
598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616
						<tr>
							<td width="22%" valign="top">&nbsp;</td>
							<td width="78%">
								<input name="Submit" type="submit" class="btn btn-primary" value="<?=gettext("Save");?>" />
							</td>
						</tr>
					</tbody>
				</table>
                    </form>

                </div>
            </section>

        </div>

	</div>
</section>

<?php include("foot.inc"); ?>