aboutsummaryrefslogtreecommitdiffstats
path: root/config/widget-havp/havp_alerts.widget.php
diff options
context:
space:
mode:
authorjim-p <jim@pingle.org>2009-10-14 17:10:40 -0400
committerjim-p <jim@pingle.org>2009-10-14 17:11:35 -0400
commit196610ae4ce93843d877993c6f1a400c7670df1e (patch)
tree945bf5c141930b56844b018a1d543e137e7ed8ee /config/widget-havp/havp_alerts.widget.php
parenta0275915f127d728e5088920bd8da9a944a7d6b4 (diff)
downloadpfsense-packages-196610ae4ce93843d877993c6f1a400c7670df1e.tar.gz
pfsense-packages-196610ae4ce93843d877993c6f1a400c7670df1e.tar.bz2
pfsense-packages-196610ae4ce93843d877993c6f1a400c7670df1e.zip
Add separate packages for snort and havp dashboard widgets.
Diffstat (limited to 'config/widget-havp/havp_alerts.widget.php')
-rw-r--r--config/widget-havp/havp_alerts.widget.php63
1 files changed, 63 insertions, 0 deletions
diff --git a/config/widget-havp/havp_alerts.widget.php b/config/widget-havp/havp_alerts.widget.php
new file mode 100644
index 00000000..57614fa1
--- /dev/null
+++ b/config/widget-havp/havp_alerts.widget.php
@@ -0,0 +1,63 @@
+<?php
+/*
+ havp_alerts.widget.php
+ Copyright (C) 2009 Michael Liberman , Jim Pingle
+
+ 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.
+*/
+global $config, $g;
+
+?>
+<table width="100%" border="0" cellspacing="0" cellpadding="0">
+ <tbody>
+ <tr class="havp-alert-header">
+ <td width="25%" class="widgetsubheader">Date</td>
+ <td width="75%" class="widgetsubheader">Details</td>
+ </tr>
+<?php $counter=0;
+ foreach ($havp_alerts as $alert) { ?>
+
+ <?php
+ if(isset($config['syslog']['reverse'])) {
+ /* honour reverse logging setting */
+ if($counter == 0)
+ $activerow = " id=\"havp-firstrow\"";
+ else
+ $activerow = "";
+
+ } else {
+ /* non-reverse logging */
+ if($counter == count($havp_alerts) - 1)
+ $activerow = " id=\"havp-firstrow\"";
+ else
+ $activerow = "";
+ }
+ ?>
+
+ <tr class="havp-alert-entry" <?php echo $activerow; ?>>
+ <td width="25%" class="listr"><?= $alert["time"] . "<br>" . $alert["date"]?></td>
+ <td width="75%" class="listr"><?= $alert["url"] . "<br>" . $alert["virusname"] ?></td>
+ </tr>
+<?php $counter++;
+ } ?>
+ </tbody>
+</table>