mirror of
				https://github.com/Icinga/icingaweb2.git
				synced 2025-10-31 03:14:31 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			49 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			49 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| /* Icinga Web 2 | (c) 2013-2015 Icinga Development Team | http://www.gnu.org/licenses/gpl-2.0.txt */
 | |
| 
 | |
| 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;
 | |
|     }
 | |
| }
 |