From a3644638aaf0418598196a870204e0b632a4c8ad Mon Sep 17 00:00:00 2001 From: Thomas Bruederli <thomas@roundcube.net> Date: Fri, 17 Apr 2015 06:28:40 -0400 Subject: [PATCH] Allow preference sections to define CSS class names --- installer/config.php | 14 ++++++++------ 1 files changed, 8 insertions(+), 6 deletions(-) diff --git a/installer/config.php b/installer/config.php index 590bbe0..7e69603 100644 --- a/installer/config.php +++ b/installer/config.php @@ -678,17 +678,19 @@ <?php $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>'; +foreach($plugins as $p) +{ + $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>'; } ?> </dl> -<p class="hint">Before enabling any plugin, check their dependencies</p> +<p class="hint">Please consider checking dependencies of enabled plugins</p> </fieldset> <?php -- Gitblit v1.9.1