aboutsummaryrefslogtreecommitdiffstats
path: root/admin/include/functions_install.inc.php
diff options
context:
space:
mode:
Diffstat (limited to 'admin/include/functions_install.inc.php')
-rw-r--r--admin/include/functions_install.inc.php15
1 files changed, 15 insertions, 0 deletions
diff --git a/admin/include/functions_install.inc.php b/admin/include/functions_install.inc.php
index 7d8ae41e7..8d00a4d36 100644
--- a/admin/include/functions_install.inc.php
+++ b/admin/include/functions_install.inc.php
@@ -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);
+ }
+}
?> \ No newline at end of file