2013-08-21 09:44:01 +02:00

13 lines
347 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 '<b>Servicegroups:</b> ' . implode(', ', $list) . "<br />\n";