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 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116
|
<?php
# $Id: contacts.php,v 1.6 2002/06/22 07:35:34 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","contacts");
define("PAGE_TITLE","Contacts");
define("OBJECTTYPE","contact");
require_once("local.inc");
include_once(NGT_LIB."head.inc");
$alter = '';
$rows = array();
$errmsg = '';
$message = '';
$objects = PluginGetObjects(OBJECTTYPE);
if( isset($objects) ) {
uasort($objects,"NagiosUasortObjectName");
foreach($objects as $key => $object) {
$alter = ($alter != "alter1") ? "alter1" : "alter2";
$inheritance = '';
$name = isset($object['name']) ?
$object['name'] : $object[OBJECTTYPE.'_name'];
$alias = isset($object['alias']) ? $object['alias'] : '';
# Is this a inheritable object?
if( !empty($object['name']) ) {
$cntinh = NagiosCountInherited(OBJECTTYPE,$name);
$inheritance = 'used by '.$cntinh.' objects';
} else if( !empty($object['use']) ) {
$inheritance = 'uses '.$object['use'];
} else {
$inheritance = '';
}
$rows[] = <<<HTML
<tr class="$alter">
<td><a href="contactedit.php?objectid={$key}">Edit</a></td>
<td>{$object['contact_name']}</td>
<td>{$alias}</td>
<td>{$object['host_notification_period']}</td>
<td>{$object['service_notification_period']}</td>
<td>{$inheritance}</td>
</tr>
HTML;
} # foreach
} else {
$message = "No '".OBJECTTYPE."'-objects found.";
}
?>
<table border="0" cellpadding="5" cellspacing="0">
<tr>
<td colspan="7" align="left">
<b><?=ErrorMsg($errmsg)?>
<?=$message?> </b>
</td>
</tr>
<tr>
<td colspan="6">
<form action="contactedit.php">
<input type="hidden" name="contactname" value="newobject">
<input type="submit" value="New">
</form>
</td>
</tr>
<tr class="rowsep">
<td colspan="3"> </td>
<td colspan="2" align="center">Notification period</td>
<td colspan="1"> </td>
</tr>
<tr class="rowsep">
<td> </td>
<td>Contact Name</td>
<td>Alias</td>
<td>for hosts</td>
<td>for services</td>
<td>Inheritance</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");
?>
|