26 lines
1.0 KiB
PHTML
26 lines
1.0 KiB
PHTML
<?php
|
|
|
|
$objectName = $this->is_service ? 'Services' : 'Hosts';
|
|
|
|
?><tr class="newsection" data-base-target="_next">
|
|
<th><a href=<?= count($comments) ?> <?= $this->translate('Comments') ?></th>
|
|
<td>
|
|
<a href="<?= $this->href('monitoring/command/removecomment', $this->target) ?>"><?=
|
|
$this->icon('cancel')
|
|
?> <?= $this->translate('Remove Comments') ?></a><br />
|
|
<a href="<?= $this->href('monitoring/command/delaynotifications', $this->target); ?>"><?=
|
|
$this->icon('bell-off-empty')
|
|
?> <?= $this->translate('Delay Notifications') ?></a><br />
|
|
<a title="<?= $this->translate('Acknowledge all problems on the selected hosts or services') ?>"
|
|
href="<?= $this->href('monitoring/command/acknowledgeproblem') ?>, $this->target); ?>">
|
|
<?= $this->icon('ok') ?> Acknowledge
|
|
</a>
|
|
</td>
|
|
<td><a href=" <?= $this->href(
|
|
'monitoring/list/comments',
|
|
array('comment_internal_id' => '(' . implode('|', $this->comments) . ')')
|
|
);
|
|
?>"> <?= count($comments) ?> comments </a>.
|
|
</td>
|
|
</tr>
|