mirror of
https://github.com/Icinga/icingaweb2.git
synced 2025-05-16 20:50:10 +02:00
11 lines
337 B
PHTML
11 lines
337 B
PHTML
<h1><?= $this->translate('Module documentations'); ?></h1>
|
|
<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>
|