Add ability for jump to be translated into other languages

This commit is contained in:
Dale Davies
2023-04-06 17:49:27 +01:00
parent 5414f2b644
commit 0c2c320c75
26 changed files with 267 additions and 37 deletions

View File

@@ -42,6 +42,13 @@ class Cache {
public function __construct(private Config $config) {
// Define the various caches used throughout the app.
$this->caches = [
'languages' => [
'cache' => null,
'expirationtype' => Caching\Cache::Files,
'expirationparams' => [
__DIR__.'/../config.php',
]
],
'searchengines' => [
'cache' => null,
'expirationtype' => Caching\Cache::Files,