Add proper titles to the command component view

refs #8458
This commit is contained in:
Johannes Meyer 2015-02-23 17:26:56 +01:00
parent 25e2baa566
commit 89ed498069
1 changed files with 17 additions and 14 deletions

View File

@ -6,26 +6,29 @@ $command = array_shift($parts);
?>
<tr class="newsection">
<th><?= $this->translate('Command') ?></th>
<th><?= $this->translate('Command'); ?></th>
<td>
<?= $this->escape($command) ?>
<?php if ($this->hasPermission('monitoring/command/schedule-check') && $object->passive_checks_enabled): ?>
<?php if ($object->getType() === $object::TYPE_HOST) {
$processCheckResult = $this->href(
<?= $this->escape($command); ?>
<?php if ($this->hasPermission('monitoring/command/schedule-check') && $object->passive_checks_enabled) {
$title = sprintf($this->translate('Submit a one time or so called passive result for the %s check'), $command);
if ($object->getType() === $object::TYPE_HOST) {
echo $this->qlink(
$this->icon('reply') . ' ' . $this->translate('Process check result'),
'monitoring/host/process-check-result',
array('host' => $object->getName())
array('host' => $object->getName()),
array('data-base-target' => '_self', 'title' => $title),
false
);
} else {
$processCheckResult = $this->href(
echo $this->qlink(
$this->icon('reply') . ' ' . $this->translate('Process check result'),
'monitoring/service/process-check-result',
array('host' => $object->getHost()->getName(), 'service' => $object->getName())
array('host' => $object->getHost()->getName(), 'service' => $object->getName()),
array('data-base-target' => '_self', 'title' => $title),
false
);
} ?>
<a href="<?= $processCheckResult ?>" data-base-target="_self">
<?= $this->icon('reply') ?>
<?= $this->translate('Process check result') ?>
</a>
<?php endif ?>
}
} ?>
</td>
</tr>