mirror of
https://github.com/Icinga/icingaweb2.git
synced 2025-07-29 00:34:03 +02:00
- Icons have now the {{XY_ICON}} format - custom classes are removed - A few typos are fixed - Capitalization refs #4550 refs #4621 refs #4584
13 lines
369 B
PHTML
13 lines
369 B
PHTML
<?php
|
|
|
|
if (empty($object->servicegroups)) return;
|
|
|
|
$list = array();
|
|
foreach ($object->servicegroups as $name => $alias) {
|
|
$list[] = '<a href="' . $this->href('monitoring/list/service', array('servicegroups' => $name)) . '">'
|
|
. $alias
|
|
. '</a>';
|
|
}
|
|
echo '{{SERVICEGROUP_ICON}} <b>Servicegroups:</b> ' . implode(', ', $list) . "<br />\n";
|
|
|