icingaweb2/modules/doc/application/views/scripts/module/index.phtml

20 lines
572 B
PHTML
Raw Normal View History

<div class="controls">
2015-11-13 11:19:00 +01:00
<?= $this->tabs ?>
</div>
2015-11-13 11:19:00 +01:00
<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()
))
2016-01-11 11:20:42 +01:00
) ?></li>
<?php endforeach ?>
</ul>
</div>