File: notes.phtml

package info (click to toggle)
icingaweb2 2.12.6-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 15,124 kB
  • sloc: php: 73,980; javascript: 5,009; sql: 333; xml: 75; sh: 72; makefile: 5
file content (48 lines) | stat: -rw-r--r-- 1,437 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
<?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 !== ''): ?>
        <?= $this->markdown($notes, [
                'id'                    => $object->type . '-notes',
                'class'                 => 'collapsible',
                'data-visible-height'   => 200
            ]) ?>
    <?php endif ?>
    </td>
</tr>