mirror of
				https://github.com/Icinga/icingaweb2-module-director.git
				synced 2025-11-03 20:54:28 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			30 lines
		
	
	
		
			490 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			30 lines
		
	
	
		
			490 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
 | 
						|
namespace Icinga\Module\Director\Objects;
 | 
						|
 | 
						|
class IcingaHostVar extends IcingaObject
 | 
						|
{
 | 
						|
    protected $keyName = array('host_id', 'varname');
 | 
						|
 | 
						|
    protected $table = 'icinga_host_var';
 | 
						|
 | 
						|
    protected $defaultProperties = array(
 | 
						|
        'host_id'   => null,
 | 
						|
        'varname'   => null,
 | 
						|
        'varvalue'  => null,
 | 
						|
        'format'    => null,
 | 
						|
    );
 | 
						|
 | 
						|
    public function onInsert()
 | 
						|
    {
 | 
						|
    }
 | 
						|
 | 
						|
    public function onUpdate()
 | 
						|
    {
 | 
						|
    }
 | 
						|
 | 
						|
    public function onDelete()
 | 
						|
    {
 | 
						|
    }
 | 
						|
}
 |