Implement command to delay notifications

Added command and mask to delay notifications
for hosts/services.

refs #4355
This commit is contained in:
Johannes Meyer 2013-07-09 13:50:07 +02:00 committed by Marius Hein
parent 72efe7e8a0
commit f102f75eb9
2 changed files with 20 additions and 0 deletions

View File

@ -541,6 +541,25 @@ class Monitoring_CommandController extends ModuleActionController
}
}
public function delaynotificationAction()
{
$form = new SendCommand("Delay a notification");
$form->addNumberBox("delay", "Notification delay (minutes from now):");
if ($this->_request->isPost()) {
if ($form->isValid()) {
$targets = $this->selectCommandTargets($form->getHosts(), $form->getServices());
$this->target->delayNotification($targets, $form->getNumber("delay"));
}
} else {
$form->setServices($this->getParameter("services", false));
$form->setHosts($this->getParameter("hosts"));
$form->setAction($this->view->url());
$form->addSubmitButton("Commit");
$this->view->form = $form;
}
}
public function sendComment()
{
$author = "AUTHOR"; //@TODO: get from auth backend

View File

@ -0,0 +1 @@
<?= $this->form ?>