diff options
author | Thomas Bruederli <bruederli@kolabsys.com> | 2014-12-27 14:53:21 +0100 |
---|---|---|
committer | Thomas Bruederli <bruederli@kolabsys.com> | 2014-12-27 14:53:21 +0100 |
commit | b737021a905a33c8eb4331692475cca7791e533c (patch) | |
tree | f6706f7bcbd1f3467985aa57d79eeec135565b18 /installer | |
parent | d1bf0feed4db67adacbec1148d1ac15b9e1a68c2 (diff) |
Improve plugin selection in installer; check already selected plugins
Diffstat (limited to 'installer')
-rw-r--r-- | installer/config.php | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/installer/config.php b/installer/config.php index 82d7f55d6..7e69603fc 100644 --- a/installer/config.php +++ b/installer/config.php @@ -680,10 +680,11 @@ echo $select_param_folding->show(strval($RCI->getprop('mime_param_folding'))); $plugins = $RCI->list_plugins(); foreach($plugins as $p) { - $p_check = new html_checkbox(array('name' => '_plugins_'.$p['name'], 'id' => 'cfgplugin_'.$p['name'])); - echo '<dt class="propname">'.$p['name'].'</dt><dd>'; - echo $p_check->show(0, array('value' => $p['name'])); - echo '<label for="cfgplugin_'.$p['name'].'">'.$p['desc'].'</label><br/></dd>'; + $p_check = new html_checkbox(array('name' => '_plugins_'.$p['name'], 'id' => 'cfgplugin_'.$p['name'], 'value' => $p['name'])); + echo '<dt class="propname"><label>'; + echo $p_check->show($p['enabled'] ? $p['name'] : 0); + echo ' ' . $p['name'] . '</label></dt><dd>'; + echo '<label for="cfgplugin_'.$p['name'].'" class="hint">' . $p['desc'] . '</label><br/></dd>'; } ?> |