= $this->translate('Comments'); ?> |
hasPermission('monitoring/command/comment/add')) {
/** @type \Icinga\Module\Monitoring\Object\MonitoredObject $object */
if ($object->getType() === $object::TYPE_HOST) {
echo $this->qlink(
$this->icon('comment') . ' ' . $this->translate('Add comment'),
'monitoring/host/add-comment',
array('host' => $object->getName()),
array(
'data-base-target' => '_self',
'title' => $this->translate('Add a new comment to this host')
),
false
);
} else {
echo $this->qlink(
$this->icon('comment') . ' ' . $this->translate('Add comment'),
'monitoring/service/add-comment',
array('host' => $object->getHost()->getName(), 'service' => $object->getName()),
array(
'data-base-target' => '_self',
'title' => $this->translate('Add a new comment to this service')
),
false
);
}
} else {
echo '-';
} ?>
|
comments as $comment) {
// Ticket hook sample
$commentText = $this->tickets ? preg_replace_callback(
$this->tickets->getPattern(),
array($this->tickets, 'createLink'),
$this->escape($comment->comment)
) : $this->escape($comment->comment);
?>