mirror of
				https://github.com/Icinga/icingaweb2.git
				synced 2025-10-31 19:34:16 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			22 lines
		
	
	
		
			397 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			22 lines
		
	
	
		
			397 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| 
 | |
| namespace Icinga\Module\Monitoring\View;
 | |
| 
 | |
| class HostgroupView extends MonitoringView
 | |
| {
 | |
|     protected $query;
 | |
| 
 | |
|     protected $availableColumns = array(
 | |
|         'hostgroup_name',
 | |
|         'hostgroup_alias',
 | |
|     );
 | |
| 
 | |
|     protected $specialFilters = array();
 | |
| 
 | |
|     protected $sortDefaults = array(
 | |
|         'hostgroup_alias' => array(
 | |
|             'default_dir' => self::SORT_ASC
 | |
|         )
 | |
|     );
 | |
| }
 |