mirror of
				https://github.com/Icinga/icingaweb2.git
				synced 2025-11-04 05:05:01 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			19 lines
		
	
	
		
			408 B
		
	
	
	
		
			PHTML
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			408 B
		
	
	
	
		
			PHTML
		
	
	
	
	
	
<?php
 | 
						|
 | 
						|
if (empty($object->servicegroups)) return;
 | 
						|
 | 
						|
$list = array();
 | 
						|
foreach ($object->servicegroups as $name => $alias) {
 | 
						|
    $list[] = $this->qlink($alias, 'monitoring/list/services', array(
 | 
						|
        'servicegroup' => $name
 | 
						|
    ));
 | 
						|
}
 | 
						|
 | 
						|
printf(
 | 
						|
    "<tr><th>%s</th><td>%s %s</td></tr>\n",
 | 
						|
    $this->translate('Servicegroups'),
 | 
						|
    $this->img('img/icons/servicegroup_petrol.png'),
 | 
						|
    implode(', ', $list)
 | 
						|
);
 | 
						|
 |