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 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90
|
<?php
# $Id: commands.php,v 1.5 2002/06/14 20:51:54 kemuri Exp $
/*
* Copyright (c) 2002 Ypsilon.Net AG, Germany
*
* This file is part of Nagat.
*
* Nagat is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* Nagat is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with Nagat; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*
*/
# Page variables
define("PAGE_ID","commands");
define("PAGE_TITLE","Commands");
define("OBJECTTYPE","command");
require_once("local.inc");
include_once(NGT_LIB."head.inc");
$alter = '';
$rows = array();
$objects = PluginGetObjects(OBJECTTYPE);
if( isset($objects) ) {
uasort($objects,NagiosUasortObjectName);
foreach($objects as $key => $object) {
$alter = ($alter != "alter1") ? "alter1" : "alter2";
$name = $object[OBJECTTYPE.'_name'];
$rows[] = <<<HTML
<tr class="$alter">
<td><a href="commandedit.php?objectid={$key}">Edit</a></td>
<td>{$name}</td>
<td>{$object['command_line']}</td>
</tr>
HTML;
} # foreach
} else {
$message = "No '".OBJECTTYPE."'-objects found.";
}
?>
<table border="0" cellpadding="5" cellspacing="0">
<tr>
<td colspan="6" align="left">
<b><?=ErrorMsg($errmsg)?>
<?=$message?> </b>
</td>
</tr>
<tr>
<td colspan="6">
<form action="commandedit.php">
<input type="hidden" name="commandname" value="newobject">
<input type="submit" value="New">
</form>
</td>
</tr>
<tr class="rowsep">
<td> </td>
<td>Command Name</td>
<td>Command Line</td>
</tr>
<?=implode("\n",$rows)?>
</table>
<?
# Beautification
if( !is_array($objects) ) {
print "<br><br><br><br><br><br><br><br>";
}
include_once(NGT_LIB."tail.inc");
?>
|