From 9ee08fcf12cf1ad4fc265383c39b86e43d5611e9 Mon Sep 17 00:00:00 2001 From: plegall Date: Thu, 15 Apr 2010 22:08:37 +0000 Subject: feature 1605: ability to forbid theme activation, needed for gally-default. git-svn-id: http://piwigo.org/svn/trunk@5874 68402e56-0260-453c-a942-63ccdbb3a9ee --- admin/themes_installed.php | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) (limited to 'admin/themes_installed.php') diff --git a/admin/themes_installed.php b/admin/themes_installed.php index a4403266e..f98493737 100644 --- a/admin/themes_installed.php +++ b/admin/themes_installed.php @@ -99,7 +99,14 @@ foreach ($themes->fs_themes as $theme_id => $fs_theme) else { // is the theme "activable" ? - $fs_theme['activable'] = true; + if (isset($fs_theme['activable']) and !$fs_theme['activable']) + { + $fs_theme['activate_tooltip'] = l10n('This theme was not designed to be directly activated'); + } + else + { + $fs_theme['activable'] = true; + } $missing_parent = $themes->missing_parent_theme($theme_id); if (isset($missing_parent)) -- cgit v1.2.3