diff options
author | Thomas Bruederli <thomas@roundcube.net> | 2013-09-13 19:10:12 +0200 |
---|---|---|
committer | Thomas Bruederli <thomas@roundcube.net> | 2013-09-13 19:10:12 +0200 |
commit | 7be8a9134c73d830dec0a46a529400ada93e8664 (patch) | |
tree | 8bd1ebe90be9d10636729af75c9e6781237a64a1 /program/steps/settings/edit_prefs.inc | |
parent | a315bf2dda957a118c775594b4ea01f79dadcdbe (diff) |
Move some config options to new and collapsible 'advanced' blocks
Diffstat (limited to 'program/steps/settings/edit_prefs.inc')
-rw-r--r-- | program/steps/settings/edit_prefs.inc | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/program/steps/settings/edit_prefs.inc b/program/steps/settings/edit_prefs.inc index 468e4994d..adf6b1623 100644 --- a/program/steps/settings/edit_prefs.inc +++ b/program/steps/settings/edit_prefs.inc @@ -40,24 +40,21 @@ function rcmail_user_prefs_form($attrib) $out = $form_start; - foreach ($SECTIONS[$CURR_SECTION]['blocks'] as $block) { + foreach ($SECTIONS[$CURR_SECTION]['blocks'] as $class => $block) { if (!empty($block['options'])) { $table = new html_table(array('cols' => 2)); foreach ($block['options'] as $option) { - if ($option['advanced']) - $table->set_row_attribs('advanced'); - if (isset($option['title'])) { $table->add('title', $option['title']); - $table->add(null, $option['content']); + $table->add(null, $option['content']); } else { $table->add(array('colspan' => 2), $option['content']); } } - $out .= html::tag('fieldset', null, html::tag('legend', null, $block['name']) . $table->show($attrib)); + $out .= html::tag('fieldset', $class, html::tag('legend', null, $block['name']) . $table->show($attrib)); } else if (!empty($block['content'])) { $out .= html::tag('fieldset', null, html::tag('legend', null, $block['name']) . $block['content']); |