Subversion-Projekte lars-tiefland.nagios-php

Revision

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

Revision 86 Revision 90
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: 86 $
7
     * @version $Rev: 90 $
Zeile 8... Zeile 8...
8
     */
8
     */
Zeile 9... Zeile 9...
9
 
9
 
Zeile 10... Zeile 10...
10
    // $Id: hostgroups.php 86 2013-01-02 13:28:36Z lars $
10
    // $Id: hostgroups.php 90 2013-01-02 13:57:59Z lars $
Zeile 11... Zeile 11...
11
 
11
 
Zeile -... Zeile 12...
-
 
12
    //var_dump( $_GET );
-
 
13
 
-
 
14
    require_once "includes/common.php";
-
 
15
 
-
 
16
    $hg = hostGroup::getList();
-
 
17
 
-
 
18
    switch ( $_GET["mode"] )
-
 
19
    {
-
 
20
        case "overview":
-
 
21
            $title = "Service Overview For All Host Groups";
-
 
22
            break;
-
 
23
        case "grid":
-
 
24
            $title = "Status Grid For All Host Groups";
-
 
25
            break;
-
 
26
        case "summary":
-
 
27
            $title = "Status Summary For All Host Groups";
12
    //var_dump( $_GET );
28
            break;
Zeile 13... Zeile 29...
13
 
29
    }
14
    require_once "includes/common.php";
30