mirror of
https://github.com/Icinga/icingaweb2.git
synced 2025-11-02 04:04:53 +01:00
16 lines
517 B
PHTML
16 lines
517 B
PHTML
<div class="controls">
|
|
<?= /** @type \Icinga\Web\Widget\Tabs $tabs */ $tabs->showOnlyCloseButton() ?>
|
|
<h1><?= $this->translate('Module documentations') ?></h1>
|
|
</div>
|
|
<div class="content">
|
|
<ul>
|
|
<?php foreach ($modules as $module): ?>
|
|
<li>
|
|
<a href="<?= $this->getHelper('Url')->url(array('moduleName' => $module), 'doc/module/toc', false, false) ?>">
|
|
<?= $module ?>
|
|
</a>
|
|
</li>
|
|
<?php endforeach ?>
|
|
</ul>
|
|
</div>
|