summaryrefslogtreecommitdiffstats
path: root/modules/monitoring/application/views/scripts/show/components/servicegroups.phtml
blob: 09ff24835c2424ee8d643812a2ce3c9b7d3130e6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<?php

if (empty($object->servicegroups)) return;

$list = array();
foreach ($object->servicegroups as $name => $alias) {
    $list[] = $this->qlink(
        $alias,
        'monitoring/list/services',
        array('servicegroup_name' => $name),
        array('title' => sprintf($this->translate('List all services in the group "%s"'), $alias))
    );
}

printf(
    "<tr><th>%s</th><td class=\"go-ahead\">%s</td></tr>\n",
    $this->translate('Servicegroups'),
    implode(', ', $list)
);