qlink( $contact, 'monitoring/show/contact', array('contact_name' => $contact), array('title' => sprintf($view->translate('Show detailed information about %s'), $contact)) ); } return '[' . implode(', ', $links) . ']'; } $self = $this; $url = $this->url(); $limit = (int) $url->getParam('limit', 25); if (! $url->hasParam('page') || ($page = (int) $url->getParam('page')) < 1) { $page = 1; } $history->limit($limit * $page); if (! $this->compact): ?>
tabs; ?> render('partials/object/host-header.phtml'); ?>

translate('This Host\'s Event History'); ?>

sortBox; ?> limiter; ?> translate('Scroll to the bottom of this page to load additional events'); ?> filterEditor; ?>
peekAhead() as $event): ?> escape($event->output); $isService = isset($event->service_description); switch ($event->type) { case 'notify': $icon = 'notification'; $title = $this->translate('Notification'); $stateClass = $isService ? Service::getStateText($event->state) : Host::getStateText($event->state); $msg = $msg ? preg_replace_callback( '/^\[([^\]]+)\]/', function($match) use ($self) { return contactsLink($match, $self); }, $msg ) : $this->translate('This notification was not sent out to any contact.'); break; case 'comment': $icon = 'comment'; $title = $this->translate('Comment'); break; case 'comment_deleted': $icon = 'remove'; $title = $this->translate('Comment deleted'); break; case 'ack': $icon = 'acknowledgement'; $title = $this->translate('Acknowledge'); break; case 'ack_deleted': $icon = 'remove'; $title = $this->translate('Ack removed'); break; case 'dt_comment': $icon = 'in_downtime'; $title = $this->translate('In Downtime'); break; case 'dt_comment_deleted': $icon = 'remove'; $title = $this->translate('Downtime removed'); break; case 'flapping': $icon = 'flapping'; $title = $this->translate('Flapping'); break; case 'flapping_deleted': $icon = 'remove'; $title = $this->translate('Flapping stopped'); break; case 'hard_state': $stateClass = $isService ? Service::getStateText($event->state) : Host::getStateText($event->state); $icon = 'attention-alt'; $title = $isService ? Service::getStateText($event->state) : Host::getStateText($event->state); break; case 'soft_state': $icon = 'spinner'; $stateClass = $isService ? Service::getStateText($event->state) : Host::getStateText($event->state); $title = $isService ? Service::getStateText($event->state) : Host::getStateText($event->state); break; case 'dt_start': $icon = 'downtime_start'; $title = $this->translate('Downtime Start'); break; case 'dt_end': $icon = 'downtime_end'; $title = $this->translate('Downtime End'); break; } ?>
getIteratorPosition() % $limit === 0): ?> escape($title); ?>

timestamp); ?>

translate('%s on %s', 'Service running on host'), $this->qlink( $event->service_display_name, 'monitoring/service/show', array( 'host' => $event->host_name, 'service' => $event->service_description ), array('title' => sprintf( $this->translate('Show detailed information for service %s on host %s'), $event->service_display_name, $event->host_display_name )) ), $event->host_display_name ) ?> escape($event->host_name); ?>

icon($icon, $title); ?> createTicketLinks($msg) ?>

hasResult()): ?> translate('No history events found matching the filter'); ?> hasMore()): ?> qlink( $this->translate('Load More'), $url->setAnchor('page-' . ($page + 1)), array( 'page' => $page + 1, ), array( 'id' => 'load-more', 'class' => 'pull-right action-link' ) ); ?>