diff options
author | thomascube <thomas@roundcube.net> | 2011-03-01 22:19:19 +0000 |
---|---|---|
committer | thomascube <thomas@roundcube.net> | 2011-03-01 22:19:19 +0000 |
commit | e49064282339bf08f0dfcce4224a20ec055f32ac (patch) | |
tree | ab600049f21f9674be8aefc2907bf7ac1e861e36 /installer/rcube_install.php | |
parent | 15e94412633b41c177e621d427cd6d5496a11702 (diff) |
Add skin_logo config option to installer; show drop-down list for skin selection
Diffstat (limited to 'installer/rcube_install.php')
-rw-r--r-- | installer/rcube_install.php | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/installer/rcube_install.php b/installer/rcube_install.php index 3f2d1a48e..8ff6492d2 100644 --- a/installer/rcube_install.php +++ b/installer/rcube_install.php @@ -511,6 +511,20 @@ class rcube_install return $select; } + /** + * Return a list with available subfolders of the skin directory + */ + function list_skins() + { + $skins = array(); + $skindir = INSTALL_PATH . 'skins/'; + foreach (glob($skindir . '*') as $path) { + if (is_dir($path) && is_readable($path)) { + $skins[] = substr($path, strlen($skindir)); + } + } + return $skins; + } /** * Display OK status |