Subversion-Projekte lars-tiefland.nagios-php

Revision

Revision 84 | Ganze Datei anzeigen | Leerzeichen ignorieren | Details | Blame | Letzte Änderung | Log anzeigen | RSS feed

Revision 84 Revision 86
Zeile 1... Zeile 1...
1
<?php
1
<?php
2
	require_once "includes/common.php";
-
 
Zeile -... Zeile 2...
-
 
2
 
-
 
3
    /**
-
 
4
     * @package nagios-php
-
 
5
     * @author Lars Tiefland <ltiefland@gmail.com>
-
 
6
     * @copyright 2013
-
 
7
     * @version $Rev: 86 $
-
 
8
     */
-
 
9
 
-
 
10
    // $Id: tac.php 86 2013-01-02 13:28:36Z lars $
-
 
11
 
-
 
12
    require_once "includes/common.php";
3
 
13
 
4
	$hosts = host::getStatusList();
14
    $hosts = host::getStatusList();
5
	$services = service::getStatusList();
15
    $services = service::getStatusList();
6
	$GLOBALS["ui"]->assign("hosts", $hosts);
16
    $GLOBALS["ui"]->assign( "hosts", $hosts );
7
	$GLOBALS["ui"]->assign("services", $services);
17
    $GLOBALS["ui"]->assign( "services", $services );
-
 
18
    $GLOBALS["ui"]->display( "tac.tpl" );
8
	$GLOBALS["ui"]->display("tac.tpl");
19