2009-08-13 06:45:39 +00:00
|
|
|
<?php
|
|
|
|
/*
|
|
|
|
* To change this template, choose Tools | Templates
|
|
|
|
* and open the template in the editor.
|
|
|
|
*/
|
|
|
|
|
2009-09-01 20:25:18 +00:00
|
|
|
if(!isset($TOPDIR)) { $TOPDIR="..";}
|
2009-08-13 06:45:39 +00:00
|
|
|
|
|
|
|
require_once "$TOPDIR/lib/security.php";
|
|
|
|
require_once "$TOPDIR/lib/functions.php";
|
|
|
|
require_once "$TOPDIR/lib/display.php";
|
|
|
|
require_once "$TOPDIR/lib/monitor_display.php";
|
|
|
|
|
2009-08-19 09:12:58 +00:00
|
|
|
echo <<<TOS1
|
|
|
|
<table id="tabTable" class="tabTable" cellspacing="1">
|
|
|
|
<thead>
|
|
|
|
<tr class="colHeaders">
|
|
|
|
<td></td>
|
|
|
|
<td>Plug-in Name</td>
|
|
|
|
<td>Status</td>
|
|
|
|
<td>Node Status Monitoring</td>
|
|
|
|
<td>Action</td>
|
|
|
|
</tr>
|
|
|
|
</thead>
|
|
|
|
TOS1;
|
|
|
|
echo <<<TOS9
|
|
|
|
<script type="text/javascript">
|
|
|
|
showPluginOptions();
|
|
|
|
showPluginDescription();
|
|
|
|
</script>
|
|
|
|
TOS9;
|
|
|
|
echo '<tbody id="monlist">';
|
|
|
|
displayMonitorLists();
|
|
|
|
echo "</tbody></table>";
|
2009-08-13 06:45:39 +00:00
|
|
|
|
|
|
|
?>
|