improvement: dynamically activate all installed themes (with checks on

parent availability and so on).

git-svn-id: http://piwigo.org/svn/trunk@5340 68402e56-0260-453c-a942-63ccdbb3a9ee
This commit is contained in:
plegall 2010-03-25 10:08:33 +00:00
commit 663be9ca63
4 changed files with 26 additions and 4 deletions

View file

@ -123,4 +123,19 @@ function available_engines()
return $engines;
}
/**
* Automatically activate all themes in the "themes" directory.
*
* @return void
*/
function activate_all_themes()
{
include_once(PHPWG_ROOT_PATH.'admin/include/themes.class.php');
$themes = new themes();
foreach ($themes->fs_themes as $theme_id => $fs_theme)
{
$themes->perform_action('activate', $theme_id);
}
}
?>

View file

@ -81,6 +81,12 @@ class themes
break;
}
if ('default' == $theme_id)
{
// you can't activate the "default" theme
break;
}
$missing_parent = $this->missing_parent_theme($theme_id);
if (isset($missing_parent))
{

View file

@ -376,6 +376,11 @@ INSERT INTO '.$prefixeTable.'config (param,value,comment)
// fill $conf global array
load_conf_from_db();
// PWG_CHARSET is required for building the fs_themes array in the
// themes class
define('PWG_CHARSET', $pwg_charset);
activate_all_themes();
$insert = array(
'id' => 1,
'galleries_url' => PHPWG_ROOT_PATH.'galleries/',

View file

@ -51,7 +51,3 @@ INSERT INTO piwigo_config (param,value,comment)
'a:11:{s:6:"author";b:1;s:10:"created_on";b:1;s:9:"posted_on";b:1;s:10:"dimensions";b:1;s:4:"file";b:1;s:8:"filesize";b:1;s:4:"tags";b:1;s:10:"categories";b:1;s:6:"visits";b:1;s:12:"average_rate";b:1;s:13:"privacy_level";b:1;}',
'Information displayed on picture page'
);
INSERT INTO piwigo_themes (id, name) VALUES ('Sylvia', 'Sylvia');
INSERT INTO piwigo_themes (id, name) VALUES ('clear', 'clear');
INSERT INTO piwigo_themes (id, name) VALUES ('dark', 'dark');