Subversion-Projekte lars-tiefland.nagios-php

Revision

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

Revision 91 Revision 113
Zeile 2... Zeile 2...
2
 
2
 
3
    /**
3
    /**
4
     * @package nagios-php
4
     * @package nagios-php
5
     * @author Lars Tiefland <ltiefland@gmail.com>
5
     * @author Lars Tiefland <ltiefland@gmail.com>
6
     * @copyright 2013
6
     * @copyright 2013
7
     * @version $Rev: 91 $
7
     * @version $Rev: 113 $
Zeile 8... Zeile 8...
8
     */
8
     */
Zeile 9... Zeile 9...
9
 
9
 
Zeile 10... Zeile 10...
10
    // $Id: hostgroups.php 91 2013-01-02 13:59:55Z lars $
10
    // $Id: hostgroups.php 113 2013-01-05 18:13:45Z lars $
Zeile 11... Zeile 11...
11
 
11
 
Zeile 12... Zeile 12...
12
    //var_dump( $_GET );
12
    //var_dump( $_GET );
13
 
13
 
14
    require_once "includes/common.php";
14
    require_once "includes/common.php";
15
 
15
 
16
    $hg = hostGroup::getList();
16
    $hg = hostGroup::getList();
17
 
17
 
18
    switch ( $_GET["mode"] )
18
    switch ( $_GET["mode"] )
19
    {
19
    {
20
        case "overview":
20
        case "overview":
21
            $title = "Service Overview For All Host Groups";
21
            $heading = "Service Overview For All Host Groups";
22
            break;
22
            break;
23
        case "grid":
23
        case "grid":
Zeile 24... Zeile 24...
24
            $title = "Status Grid For All Host Groups";
24
            $heading = "Status Grid For All Host Groups";
25
            break;
25
            break;
Zeile 26... Zeile 26...
26
        case "summary":
26
        case "summary":
27
            $title = "Status Summary For All Host Groups";
27
            $heading = "Status Summary For All Host Groups";