icingaweb2/modules/monitoring/library/Monitoring/Command/Instance/TogglePassiveServiceChecks.php

23 lines
610 B
PHP
Raw Normal View History

<?php
// {{{ICINGA_LICENSE_HEADER}}}
// {{{ICINGA_LICENSE_HEADER}}}
namespace Icinga\Module\Monitoring\Command\Instance;
use Icinga\Module\Monitoring\Command\Common\ToggleFeature;
/**
* Enable/disable passive service checks on an Icinga instance
*/
class TogglePassiveServiceChecks extends ToggleFeature
{
/**
* (non-PHPDoc)
* @see \Icinga\Module\Monitoring\Command\IcingaCommand::getCommandString() For the method documentation.
*/
public function getCommandString()
{
return $this->enable === true ? 'ENABLE_PASSIVE_SVC_CHECKS' : 'DISABLE_PASSIVE_SVC_CHECKS';
}
}