Skip to content
Extraits de code Groupes Projets
Valider 0b97a842 rédigé par mattab's avatar mattab
Parcourir les fichiers

Making "Theme Enable" work for PleineLune

parent 4c88e96a
Aucune branche associée trouvée
Aucune étiquette associée trouvée
Aucune requête de fusion associée trouvée
...@@ -282,13 +282,21 @@ class PluginsManager ...@@ -282,13 +282,21 @@ class PluginsManager
return; return;
} }
// Only one theme enabled at a time
$themeAlreadyEnabled = $this->getThemeEnabled();
if($themeAlreadyEnabled) {
$plugin = $this->loadPlugin($pluginName);
if($plugin->isTheme()) {
$plugins = $this->deactivatePlugin( $themeAlreadyEnabled, $plugins );
}
}
// Load plugin
$plugin = $this->loadPlugin($pluginName); $plugin = $this->loadPlugin($pluginName);
if ($plugin === null) { if ($plugin === null) {
return; return;
} }
$this->installPluginIfNecessary($plugin); $this->installPluginIfNecessary($plugin);
$plugin->activate(); $plugin->activate();
// we add the plugin to the list of activated plugins // we add the plugin to the list of activated plugins
...@@ -297,12 +305,6 @@ class PluginsManager ...@@ -297,12 +305,6 @@ class PluginsManager
} }
$plugins = array_unique($plugins); $plugins = array_unique($plugins);
// Only one theme enabled at a time
$themeAlreadyEnabled = $this->getThemeEnabled();
if($plugin->isTheme()
&& $themeAlreadyEnabled) {
$plugins = $this->deactivatePlugin( $themeAlreadyEnabled, $plugins );
}
// the config file will automatically be saved with the new plugin // the config file will automatically be saved with the new plugin
$this->updatePluginsConfig($plugins); $this->updatePluginsConfig($plugins);
......
{ {
"name": "PleineLune", "name": "PleineLune",
"description": "A dark theme for Piwik, ideal to view your analytics reports before sunrise!", "description": "A dark theme for Piwik, ideal to view your analytics reports before sunrise.",
"theme": true "theme": true
} }
\ No newline at end of file
0% Chargement en cours ou .
You are about to add 0 people to the discussion. Proceed with caution.
Terminez d'abord l'édition de ce message.
Veuillez vous inscrire ou vous pour commenter