diag_logs_wireless.php 3.22 KB
Newer Older
Ad Schellevis's avatar
Ad Schellevis committed
1
<?php
2

Ad Schellevis's avatar
Ad Schellevis committed
3
/*
4
	Copyright (C) Deciso B.V.
Ad Schellevis's avatar
Ad Schellevis committed
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
	Copyright (C) 2008 Bill Marquette <bill.marquette@gmail.com>.
	Copyright (C) 2008 Seth Mos <seth.mos@dds.nl>.
	Copyright (C) 2011 Jim Pingle <jimp@pfsense.org>.
	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.
*/

32
require_once("guiconfig.inc");
33
require_once("system.inc");
34
require_once("interfaces.inc");
Ad Schellevis's avatar
Ad Schellevis committed
35

36
$wireless_logfile = '/var/log/wireless.log';
Ad Schellevis's avatar
Ad Schellevis committed
37

38 39 40 41
if (empty($config['syslog']['nentries'])) {
        $nentries = 50;
} else {
        $nentries = $config['syslog']['nentries'];
42
}
Ad Schellevis's avatar
Ad Schellevis committed
43

44
if ($_POST['clear']) {
45
	clear_clog($wireless_logfile);
46
}
Ad Schellevis's avatar
Ad Schellevis committed
47

Franco Fichtner's avatar
Franco Fichtner committed
48 49 50 51 52
if (isset($_POST['filtertext'])) {
	$filtertext = htmlspecialchars($_POST['filtertext']);
}

$pgtitle = array(gettext('System'),gettext('Log Files'),gettext('Wireless'));
53

Ad Schellevis's avatar
Ad Schellevis committed
54 55 56 57
include("head.inc");

?>

58 59
<body>

Ad Schellevis's avatar
Ad Schellevis committed
60
<?php include("fbegin.inc"); ?>
61 62

	<section class="page-content-main">
63
		<div class="container-fluid">
64
			<div class="row">
65

66
				<?php if (isset($input_errors) && count($input_errors) > 0) print_input_errors($input_errors); ?>
67

68
			    <section class="col-xs-12">
69 70 71
					<div class="tab-content content-box col-xs-12">


72
							 <div class="table-responsive">
73
								<table class="table table-striped table-sort">
Franco Fichtner's avatar
Franco Fichtner committed
74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90
						<tr><td colspan="2">
							<form id="clearform" name="clearform" action="diag_logs_wireless.php" method="post" class="__mt">
					<input id="filtertext" name="filtertext" value="<?=$filtertext;?>"/>
					<input id="filtersubmit" name="filtersubmit" type="submit" class="btn btn-primary" value="<?=gettext("Filter");?>" />
						</form>
						</td></tr>
									<?php
										if (isset($filtertext))
											dump_clog($wireless_logfile, $nentries, true, array("$filtertext"));
										else
											dump_clog($wireless_logfile, $nentries, true, array());
									?>
									<tr><td colspan="2">
										<form action="diag_logs_wireless.php" method="post">
											<input name="clear" type="submit" class="btn" value="<?= gettext("Clear log");?>" />
										</form>
									</td></tr>
91
								</table>
92 93
							 </div>
				    </div>
94
			</section>
95 96 97
			</div>
		</div>
	</section>
98 99

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