mirror of
https://github.com/Mibew/mibew.git
synced 2025-04-07 00:30:12 +03:00
Clear routes from cache when a plugin becomes initialized or non-initialized for the first time
Fixes #143
This commit is contained in:
parent
15dbe153f5
commit
7f6b193656
@ -208,7 +208,10 @@ class PluginManager implements
|
|||||||
if (!$plugin_info->isInitialized()) {
|
if (!$plugin_info->isInitialized()) {
|
||||||
$plugin_info->getState()->initialized = true;
|
$plugin_info->getState()->initialized = true;
|
||||||
$plugin_info->getState()->save();
|
$plugin_info->getState()->save();
|
||||||
# TODO: clear cache
|
// Plugins can have own routing files and when the plugin becomes
|
||||||
|
// initialized after non-initialized state its routes should be
|
||||||
|
// reset. So the cache is cleared to make sure the routes set is up to date.
|
||||||
|
$this->getCache()->getItem('routing/resources')->clear();
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
// The plugin cannot be loaded. Just skip it.
|
// The plugin cannot be loaded. Just skip it.
|
||||||
@ -219,7 +222,10 @@ class PluginManager implements
|
|||||||
if ($plugin_info->isInitialized()) {
|
if ($plugin_info->isInitialized()) {
|
||||||
$plugin_info->getState()->initialized = false;
|
$plugin_info->getState()->initialized = false;
|
||||||
$plugin_info->getState()->save();
|
$plugin_info->getState()->save();
|
||||||
# TODO: clear cache
|
// Plugins can have own routing files and when the plugin becomes
|
||||||
|
// non-initialized after initialized state its routes should be
|
||||||
|
// removed. So the cache is cleared to make sure the routes set is up to date.
|
||||||
|
$this->getCache()->getItem('routing/resources')->clear();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user