Revision 90 | Zur aktuellen Revision | Blame | Vergleich mit vorheriger | Letzte Änderung | Log anzeigen | RSS feed
<?php/*** @package nagios-php* @author Lars Tiefland <ltiefland@gmail.com>* @copyright 2013* @version $Rev: 91 $*/// $Id: hostgroups.php 91 2013-01-02 13:59:55Z lars $//var_dump( $_GET );require_once "includes/common.php";$hg = hostGroup::getList();switch ( $_GET["mode"] ){case "overview":$title = "Service Overview For All Host Groups";break;case "grid":$title = "Status Grid For All Host Groups";break;case "summary":$title = "Status Summary For All Host Groups";break;}$GLOBALS["ui"]->assign( "hostgroups", $hg )->assign( "title", $title )->display( "hostgroups.tpl" );?>