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

---
 program/steps/settings/func.inc |    7 +++++++
 1 files changed, 7 insertions(+), 0 deletions(-)

diff --git a/program/steps/settings/func.inc b/program/steps/settings/func.inc
index c763dd3..a136d38 100644
--- a/program/steps/settings/func.inc
+++ b/program/steps/settings/func.inc
@@ -73,6 +73,13 @@
 
     list($list, $cols) = rcmail_user_prefs();
 
+    // add section keys as class name to the primary col
+    array_walk($list, function(&$item, $key) use ($attrib) {
+        if (!isset($item['section_class'])) {
+            $item['section_class'] = trim($attrib['classprefix'] . $key);
+        }
+    });
+
     // create XHTML table
     $out = $RCMAIL->table_output($attrib, $list, $cols, 'id');
 

--
Gitblit v1.9.1