mirror of
https://github.com/Icinga/icingaweb2.git
synced 2026-02-27 03:30:24 -05:00
The Notification dependency is removed and uses exceptions now, otherwise it's mostly the same like in the incubator refs #4092
24 lines
No EOL
635 B
PHTML
24 lines
No EOL
635 B
PHTML
<?php $container = $this->container('modules-container',array(
|
|
"class" => "expanded_absolute"
|
|
))->beginContent() ?>
|
|
<table class="table table-bordered" style="width:100%">
|
|
<thead>
|
|
<tr style="text-align:left">
|
|
<th width="70%">Module</th>
|
|
<th width="15%">Type</th>
|
|
<th width="15%">Active</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<?php foreach($this->modules as $module): ?>
|
|
<tr>
|
|
<td><?= $module["name"] ?></td>
|
|
<td><?= $module["type"] ?></td>
|
|
<td><?= $module["active"] ?></td>
|
|
</tr>
|
|
|
|
<?php endforeach; ?>
|
|
</tbody>
|
|
</table>
|
|
|
|
<?= $container; ?> |