Subversion-Projekte lars-tiefland.nagios-php

Revision

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

Revision 105 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: 105 $
7
     * @version $Rev: 113 $
Zeile 8... Zeile 8...
8
     */
8
     */
Zeile 9... Zeile 9...
9
 
9
 
Zeile 10... Zeile 10...
10
    // $Id: servicegroups.php 105 2013-01-03 10:07:17Z lars $
10
    // $Id: servicegroups.php 113 2013-01-05 18:13:45Z lars $
Zeile 11... Zeile 11...
11
 
11
 
12
    require_once "includes/common.php";
12
    require_once "includes/common.php";
13
 
13
 
14
    $sg = serviceGroup::getList();
14
    $sg = serviceGroup::getList();
15
 
15
 
16
    switch ( $_GET["mode"] )
16
    switch ( $_GET["mode"] )
17
    {
17
    {
18
        case "overview":
18
        case "overview":
19
            $title = "Service Overview For All Host Groups";
19
            $heading = "Service Overview For All Host Groups";
20
            break;
20
            break;
21
        case "grid":
21
        case "grid":
22
            $title = "Status Grid For All Host Groups";
22
            $heading = "Status Grid For All Host Groups";
Zeile 23... Zeile 23...
23
            break;
23
            break;
24
        case "summary":
24
        case "summary":
Zeile 25... Zeile 25...
25
            $title = "Status Summary For All Host Groups";
25
            $heading = "Status Summary For All Host Groups";
26
            break;
26
            break;