Remove leading and trailing whitespace from host header partial

refs #12208
This commit is contained in:
Alexander A. Klimov 2016-08-31 10:32:12 +02:00
parent 1993ae2ed2
commit a9f86c6f22

View File

@ -13,28 +13,28 @@ use Icinga\Module\Monitoring\Object\Host;
<?php endif ?>
</div>
</td>
<td>
<?= $this->iconImage()->host($object) ?>
<span class="selectable"><?= $this->escape($object->host_display_name) ?></span>
<?php if ($object->host_display_name !== $object->host_name): ?>
<span class="selectable host-meta">&#40;<?= $this->escape($object->host_name) ?>&#41;</span>
<?php endif ?>
<?php if ($object->host_alias !== $object->host_display_name && $object->host_alias !== $object->host_name): ?>
<div class="selectable host-meta">
<?= $this->escape($this->translate('Alias', 'host') . ': ' . $object->host_alias) ?>
</div>
<?php endif ?>
<?= $this->render('partials/host/statusicons.phtml') ?>
<?php if ($object->host_address6 && $object->host_address6 !== $object->host_name): ?>
<div class="selectable host-meta" title="<?= $this->translate('IPv6 address') ?>">
<?= $this->escape($object->host_address6) ?>
</div>
<?php endif ?>
<?php if ($object->host_address && $object->host_address !== $object->host_name): ?>
<div class="selectable host-meta" title="<?= $this->translate('IPv4 address') ?>">
<?= $this->escape($object->host_address) ?>
</div>
<?php endif ?>
</td>
<td><?php
echo $this->iconImage()->host($object);
echo '<span class="selectable">' . $this->escape($object->host_display_name) . '</span>';
if ($object->host_display_name !== $object->host_name) {
echo ' <span class="selectable host-meta">&#40;' . $this->escape($object->host_name) . '&#41;</span>';
}
if ($object->host_alias !== $object->host_display_name && $object->host_alias !== $object->host_name) {
echo '<div class="selectable host-meta">'
. $this->escape($this->translate('Alias', 'host') . ': ' . $object->host_alias)
. '</div>';
}
echo $this->render('partials/host/statusicons.phtml');
if ($object->host_address6 && $object->host_address6 !== $object->host_name) {
echo '<div class="selectable host-meta" title="' . $this->translate('IPv6 address') . '">'
. $this->escape($object->host_address6)
. '</div>';
}
if ($object->host_address && $object->host_address !== $object->host_name) {
echo '<div class="selectable host-meta" title="' . $this->translate('IPv4 address') . '">'
. $this->escape($object->host_address)
. '</div>';
}
?></td>
</tr>
</table>