Merge pull request #2053 from annando/1511-only-supported-themes

Only show supported themes on the admin site.
This commit is contained in:
Tobias Diekershoff 2015-11-08 18:39:07 +01:00
commit 69076b9a01
1 changed files with 40 additions and 38 deletions

View File

@ -615,15 +615,17 @@ function admin_page_site(&$a) {
$theme_choices = array();
$theme_choices_mobile = array();
$theme_choices_mobile["---"] = t("No special theme for mobile devices");
$files = glob('view/theme/*');
$files = glob('view/theme/*'); /**/
if($files) {
foreach($files as $file) {
if (intval(file_exists($file . '/unsupported')))
continue;
$f = basename($file);
$theme_name = ((file_exists($file . '/experimental')) ? sprintf("%s - \x28Experimental\x29", $f) : $f);
if (file_exists($file . '/mobile')) {
$theme_choices_mobile[$f] = $theme_name;
}
else {
} else {
$theme_choices[$f] = $theme_name;
}
}