2016-12-05 13:33:11 +01:00

44 lines
1.2 KiB
PHTML

<?php
use Icinga\Web\Navigation\Navigation;
/** @var \Icinga\Module\Monitoring\Object\MonitoredObject $object */
$navigation = new Navigation();
$notes = trim($object->notes);
$links = $object->getNotesUrls();
if (! empty($links)) {
foreach ($links as $link) {
$navigation->addItem(
// add warning to links that open in new tabs to improve accessibility, as recommended by WCAG20 G201
$this->icon(
'forward',
$this->translate('Link opens in new window'),
array('aria-label' => $this->translate('Link opens in new window'))
) . ' ' . $this->escape($link),
array(
'url' => $link,
'target' => '_blank',
'renderer' => array(
'NavigationItemRenderer',
'escape_label' => false
)
)
);
}
}
if (($navigation->isEmpty() || ! $navigation->hasRenderableItems()) && $notes === '') {
return;
}
?>
<tr>
<th><?= $this->translate('Notes') ?></th>
<td>
<?= $navigation->getRenderer() ?>
<?php if ($notes !== ''): ?>
<p><?= $this->nl2br($this->escape($notes)) ?></p>
<?php endif ?>
</td>
</tr>