mirror of
				https://github.com/Icinga/icingaweb2.git
				synced 2025-10-31 03:14:31 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			26 lines
		
	
	
		
			592 B
		
	
	
	
		
			PHTML
		
	
	
	
	
	
			
		
		
	
	
			26 lines
		
	
	
		
			592 B
		
	
	
	
		
			PHTML
		
	
	
	
	
	
| <?php
 | |
| $hostgroups = array();
 | |
| foreach ($object->hostgroups as $name => $alias) {
 | |
|     $hostgroups[] = '<a href="' . $this->href('monitoring/list/hosts', array('hostgroup' => $name)) . '">'
 | |
|         . $alias
 | |
|         . '</a>';
 | |
| }
 | |
| ?>
 | |
| <div>
 | |
|     <div class="panel-heading">
 | |
|         <div class="panel-hostname">
 | |
|             Hostgroups
 | |
|         </div>
 | |
|     </div>
 | |
| 
 | |
|     <hr class="separator" />
 | |
| 
 | |
|     <div class="panel-body">
 | |
|         <?php if (!count($hostgroups)): ?>
 | |
|             No Hostgroups
 | |
|         <?php else: ?>
 | |
|             <?= implode(', ', $hostgroups); ?>
 | |
|         <?php endif; ?>
 | |
|     </div>
 | |
| </div>
 |