mirror of
				https://github.com/Icinga/icingaweb2.git
				synced 2025-10-31 11:24:51 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			18 lines
		
	
	
		
			341 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
		
			341 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| /* Icinga Web 2 | (c) 2018 Icinga Development Team | GPLv2+ */
 | |
| 
 | |
| namespace Icinga\Module\Monitoring\DataView;
 | |
| 
 | |
| class Hostcontact extends Contact
 | |
| {
 | |
|     public function getColumns()
 | |
|     {
 | |
|         return [
 | |
|             'contact_name',
 | |
|             'contact_alias',
 | |
|             'contact_email',
 | |
|             'contact_pager'
 | |
|         ];
 | |
|     }
 | |
| }
 |