Only show supported themes on the admin site.

This commit is contained in:
Michael Vogel 2015-11-08 18:35:39 +01:00
parent e6202defd1
commit e803e56eea
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;
}
}