Exemplo n.º 1
0
 /**
  * Schedule host downtimes
  */
 public function scheduleDowntimeAction()
 {
     $this->assertPermission('monitoring/command/downtime/schedule');
     $form = new ScheduleHostDowntimeCommandForm();
     $form->setBackend($this->backend);
     $form->setTitle($this->translate('Schedule Host Downtimes'));
     $this->handleCommandForm($form);
 }