diff options
Diffstat (limited to 'core/views/admin_modules.html.php')
-rw-r--r-- | core/views/admin_modules.html.php | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/core/views/admin_modules.html.php b/core/views/admin_modules.html.php new file mode 100644 index 00000000..d0a0f613 --- /dev/null +++ b/core/views/admin_modules.html.php @@ -0,0 +1,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> |