icingaweb2/modules/monitoring/application/views/scripts/show/components/actions.phtml

42 lines
1.1 KiB
PHTML
Raw Normal View History

<?php
use Icinga\Web\Navigation\Navigation;
$navigation = new Navigation();
$navigation->load($object->getType() . '-action');
foreach ($navigation as $item) {
$item->setObject($object);
}
// add warning to links that open in new tabs to improve accessibility, as recommended by WCAG20 G201
$newTabInfo = sprintf('<span class="info-box display-on-hover"> %s </span>', $this->translate('opens in new window'));
foreach ($object->getActionUrls() as $i => $link) {
$navigation->addItem(
'Action ' . ($i + 1) . $newTabInfo,
array(
'url' => $link,
'target' => '_blank',
'renderer' => array(
'NavigationItemRenderer',
'escape_label' => false
)
)
);
}
2015-05-18 11:45:39 +02:00
if (isset($this->actions)) {
foreach ($this->actions as $id => $action) {
$navigation->addItem($id, array('url' => $action));
}
}
if ($navigation->isEmpty() || !$navigation->hasRenderableItems()) {
return;
}
?>
<tr>
<th><?= $this->translate('Actions'); ?></th>
<?= $navigation->getRenderer()->setElementTag('td')->setCssClass('actions'); ?>
</tr>