public function scheduleAction()
 {
     if (!$this->getRequest()->isPost()) {
         return $this->fail('downtime/schedule requires a POST request');
     }
     $hostname = $this->params->get('host');
     $host = $this->getHostObject($hostname);
     // Start is NOW if not set
     if (null === ($start = $this->params->get('start'))) {
         $start = time();
     } else {
         $start = ctype_digit($start) ? $start : strtotime($start);
     }
     // End is NOW + 15 minutes if not set
     if (null === ($end = $this->params->get('end'))) {
         $end = $start + 15 * 60;
     } else {
         $end = ctype_digit($end) ? $end : strtotime($end);
     }
     // Duration is 20 minutes if not set
     $duration = $this->params->get('duration', 20 * 60);
     $fixed = $this->params->get('fixed', false);
     $comment = $this->params->get('comment', 'System went down for reboot');
     $cmd = new ScheduleHostDowntimeCommand();
     $cmd->setObject($host)->setComment($comment)->setAuthor($hostname)->setStart($start)->setEnd($end)->setDuration($duration)->setFixed($fixed);
     $this->getTransport()->send($cmd);
     $cmd = new ScheduleHostDowntimeCommand();
     $cmd->setForAllServices()->setObject($host)->setComment($comment)->setAuthor($hostname)->setStart($start)->setEnd($end)->setDuration($duration)->setFixed($fixed);
     $this->getTransport()->send($cmd);
     $this->view->hostname = $hostname;
     $this->view->duration = $duration;
     $this->view->comment = $comment;
     $this->view->start = $start;
     $this->view->end = $end;
     if ($this->isJson) {
         $this->render('schedule-json');
     }
 }