blob: d0a0f613b2aa5af1fc89c39c0742c61c227cd54e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
<? defined("SYSPATH") or die("No direct script access."); ?>
<div id="gModules">
<table>
<tr>
<th> <?= _("Installed") ?> </th>
<th> <?= _("Name") ?> </th>
<th> <?= _("Version") ?> </th>
<th> <?= _("Description") ?> </th>
</tr>
<? foreach ($available as $module_name => $module_info): ?>
<tr>
<td> <?= form::checkbox($module_name, '', module::is_installed($module_name)) ?> </td>
<td> <?= _($module_info["name"]) ?> </td>
<td> <?= module::get_version($module_name) ?> </td>
<td> <?= _($module_info["description"]) ?> </td>
</tr>
<? endforeach ?>
</table>
</div>
|