mirror of
				https://github.com/Icinga/icingaweb2.git
				synced 2025-11-04 05:05:01 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			50 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			50 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
// {{{ICINGA_LICENSE_HEADER}}}
 | 
						|
// {{{ICINGA_LICENSE_HEADER}}}
 | 
						|
 | 
						|
namespace Icinga\Module\Monitoring\Command\Object;
 | 
						|
 | 
						|
/**
 | 
						|
 * Schedule a host check
 | 
						|
 */
 | 
						|
class ScheduleHostCheckCommand extends ScheduleServiceCheckCommand
 | 
						|
{
 | 
						|
    /**
 | 
						|
     * (non-PHPDoc)
 | 
						|
     * @see \Icinga\Module\Monitoring\Command\Object\ObjectCommand::$allowedObjects For the property documentation.
 | 
						|
     */
 | 
						|
    protected $allowedObjects = array(
 | 
						|
        self::TYPE_HOST
 | 
						|
    );
 | 
						|
 | 
						|
    /**
 | 
						|
     * Whether to schedule a check of all services associated with a particular host
 | 
						|
     *
 | 
						|
     * @var bool
 | 
						|
     */
 | 
						|
    protected $ofAllServices = false;
 | 
						|
 | 
						|
    /**
 | 
						|
     * Set whether to schedule a check of all services associated with a particular host
 | 
						|
     *
 | 
						|
     * @param   bool $ofAllServices
 | 
						|
     *
 | 
						|
     * @return  $this
 | 
						|
     */
 | 
						|
    public function setOfAllServices($ofAllServices = true)
 | 
						|
    {
 | 
						|
        $this->ofAllServices = (bool) $ofAllServices;
 | 
						|
        return $this;
 | 
						|
    }
 | 
						|
 | 
						|
    /**
 | 
						|
     * Get whether to schedule a check of all services associated with a particular host
 | 
						|
     *
 | 
						|
     * @return bool
 | 
						|
     */
 | 
						|
    public function getOfAllServices()
 | 
						|
    {
 | 
						|
        return $this->ofAllServices;
 | 
						|
    }
 | 
						|
}
 |