mirror of
				https://github.com/Icinga/icingaweb2.git
				synced 2025-11-03 20:54:27 +01:00 
			
		
		
		
	Its not necessary to expose those columns because these data views do not directly accept user input.
		
			
				
	
	
		
			32 lines
		
	
	
		
			653 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			32 lines
		
	
	
		
			653 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
/* Icinga Web 2 | (c) 2013 Icinga Development Team | GPLv2+ */
 | 
						|
 | 
						|
namespace Icinga\Module\Monitoring\DataView;
 | 
						|
 | 
						|
class Servicegroup extends DataView
 | 
						|
{
 | 
						|
    public function getColumns()
 | 
						|
    {
 | 
						|
        return array(
 | 
						|
            'servicegroup_alias',
 | 
						|
            'servicegroup_name'
 | 
						|
        );
 | 
						|
    }
 | 
						|
 | 
						|
    public function getSortRules()
 | 
						|
    {
 | 
						|
        return array(
 | 
						|
            'servicegroup_alias' => array(
 | 
						|
                'order' => self::SORT_ASC
 | 
						|
            )
 | 
						|
        );
 | 
						|
    }
 | 
						|
 | 
						|
    public function getStaticFilterColumns()
 | 
						|
    {
 | 
						|
        return array(
 | 
						|
            'instance_name', 'host_name', 'hostgroup_name', 'service_description'
 | 
						|
        );
 | 
						|
    }
 | 
						|
}
 |