mirror of
https://github.com/Icinga/icingaweb2.git
synced 2025-07-08 14:34:29 +02:00
11 lines
309 B
PHTML
11 lines
309 B
PHTML
<h1>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>
|