mirror of
				https://github.com/Icinga/icingaweb2.git
				synced 2025-10-31 11:24:51 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			19 lines
		
	
	
		
			384 B
		
	
	
	
		
			PHTML
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			384 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->icon('services'),
 | |
|     implode(', ', $list)
 | |
| );
 | |
| 
 |