hasPermission('monitoring/command/downtime/schedule')) { /** @var \Icinga\Module\Monitoring\Object\MonitoredObject $object */ if ($object->getType() === $object::TYPE_HOST) { $addLink = $this->qlink( $this->translate('Schedule downtime'), 'monitoring/host/schedule-downtime', array('host' => $object->getName()), array( 'class' => 'action-link', 'data-base-target' => '_self', 'icon' => 'plug', 'title' => $this->translate( 'Schedule a downtime to suppress all problem notifications within a specific period of time' ) ) ); } else { $addLink = $this->qlink( $this->translate('Schedule downtime'), 'monitoring/service/schedule-downtime', array('host' => $object->getHost()->getName(), 'service' => $object->getName()), array( 'class' => 'action-link', 'data-base-target' => '_self', 'icon' => 'plug', 'title' => $this->translate( 'Schedule a downtime to suppress all problem notifications within a specific period of time' ) ) ); } } if (empty($object->downtimes) && ! $addLink) { return; } ?> translate('Downtimes'); if (! empty($object->downtimes) && $addLink) { echo '
' . $addLink; } ?> downtimes)): echo $addLink; else: ?>
downtimes as $downtime): if ((bool) $downtime->is_in_effect) { $state = sprintf( $this->translate('expires %s', 'Last format parameter represents the downtime expire time'), $this->timeUntil($downtime->end, false, true) ); } else { if ($downtime->start <= time()) { $state = sprintf( $this->translate('ends %s', 'Last format parameter represents the end time'), $this->timeUntil($downtime->is_flexible ? $downtime->scheduled_end : $downtime->end, false, true) ); } else { $state = sprintf( $this->translate('scheduled %s', 'Last format parameter represents the time scheduled'), $this->timeUntil($downtime->start, false, true) ) . ' ' . sprintf( $this->translate('expires %s', 'Last format parameter represents the downtime expire time'), $this->timeUntil($downtime->is_flexible ? $downtime->scheduled_end : $downtime->end, false, true) ); } } ?>
escape(sprintf( $downtime->is_flexible ? $this->translate('Flexible downtime by %s') : $this->translate('Fixed downtime by %s'), $downtime->author_name )) ?> translate('created') ?> timeAgo($downtime->entry_time) ?> setAttrib('class', $deleteButton->getAttrib('class') . ' remove-action'); $deleteButton->populate( array( 'downtime_id' => $downtime->id, 'downtime_is_service' => $object->getType() === $object::TYPE_SERVICE, 'downtime_name' => $downtime->name ) ); echo $deleteButton; } ?>
nl2br($this->createTicketLinks($this->markdown($downtime->comment))) ?>