mirror of
https://github.com/slawkens/myaac.git
synced 2025-11-27 21:56:50 +01:00
clearRouteCache on database pages change
This commit is contained in:
@@ -1265,12 +1265,17 @@ function clearCache()
|
||||
deleteDirectory(CACHE, ['signatures', 'twig', 'plugins', 'index.html', 'persistent'], true);
|
||||
|
||||
// routes cache
|
||||
clearRouteCache();
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
function clearRouteCache(): void
|
||||
{
|
||||
$routeCacheFile = CACHE . 'route.cache';
|
||||
if (file_exists($routeCacheFile)) {
|
||||
unlink($routeCacheFile);
|
||||
}
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
function getCustomPageInfo($name)
|
||||
|
||||
Reference in New Issue
Block a user