This file is indexed.

/usr/share/icingaweb2/modules/doc/application/views/scripts/module/index.phtml is in icingaweb2-module-doc 2.4.1-1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
<div class="controls">
    <?= $this->tabs ?>
</div>

<div class="content">
    <ul>
    <?php foreach ($modules as $module): /** @var \Icinga\Application\Modules\Module $module */ ?>
        <li><?= $this->qlink(
            $module->getTitle(),
            'doc/module/toc',
            array('moduleName' => $module->getName()),
            array('title' => sprintf(
                $this->translate('Show the documentation\'s table of contents for the %s'),
                $module->getTitle()
            ))
        ) ?></li>
    <?php endforeach ?>
    </ul>
</div>