mirror of
				https://github.com/Icinga/icingaweb2.git
				synced 2025-10-30 19:04:10 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			18 lines
		
	
	
		
			364 B
		
	
	
	
		
			PHTML
		
	
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
		
			364 B
		
	
	
	
		
			PHTML
		
	
	
	
	
	
| <?php
 | |
| 
 | |
| if (empty($object->hostgroups)) return;
 | |
| 
 | |
| $list = array();
 | |
| foreach ($object->hostgroups as $name => $alias) {
 | |
|     $list[] = $this->qlink($alias, 'monitoring/list/hosts', array(
 | |
|         'hostgroup' => $name
 | |
|     ));
 | |
| }
 | |
| printf(
 | |
|     "<tr><th>%s</th><td>%s %s</td></tr>\n",
 | |
|     $this->translate('Hostgroups'),
 | |
|     $this->icon('host'),
 | |
|     implode(', ', $list)
 | |
| );
 | |
| 
 |