bug 2218: deactivate non core themes after upgrade

git-svn-id: http://piwigo.org/svn/trunk@9597 68402e56-0260-453c-a942-63ccdbb3a9ee
This commit is contained in:
plegall
2011-03-10 10:50:11 +00:00
parent 3e7a89edb2
commit 59b87ac06b
5 changed files with 47 additions and 1 deletions
+41
View File
@@ -110,6 +110,47 @@ WHERE id IN (\'' . implode('\',\'', $plugins) . '\')
}
}
// Deactivate all non-standard themes
function deactivate_non_standard_themes()
{
global $page;
$standard_themes = array(
'clear',
'Sylvia',
'dark',
);
$query = '
SELECT
id,
name
FROM '.PREFIX_TABLE.'themes
WHERE id NOT IN (\''.implode("','", $standard_themes).'\')
;';
$result = pwg_query($query);
$theme_ids = array();
$theme_names = array();
while ($row = pwg_db_fetch_assoc($result))
{
array_push($theme_ids, $row['id']);
array_push($theme_names, $row['name']);
}
if (!empty($theme_ids))
{
$query = '
DELETE
FROM '.PREFIX_TABLE.'themes
WHERE id IN (\''.implode("','", $theme_ids).'\')
;';
pwg_query($query);
array_push($page['infos'],
l10n('As a precaution, following themes have been deactivated. You must check for themes upgrade before reactiving them:').'<p><i>'.implode(', ', $theme_names).'</i></p>');
}
}
// Check access rights
function check_upgrade_access_rights()
{