added language context to json cache to articles and collection
This commit is contained in:
@@ -342,7 +342,10 @@ class CorpusController extends ControllerBase {
|
||||
|
||||
$data['#cache'] = [
|
||||
'max-age' => \Drupal\Core\Cache\Cache::PERMANENT,
|
||||
'tags' => ['edlp-articlesindex-cache']
|
||||
'tags' => ['edlp-articlesindex-cache'],
|
||||
'contexts' => [
|
||||
'languages:language_content'
|
||||
]
|
||||
];
|
||||
|
||||
// $response = new JsonResponse();
|
||||
@@ -356,14 +359,14 @@ class CorpusController extends ControllerBase {
|
||||
|
||||
|
||||
|
||||
// ___ _ _ _ _
|
||||
// / __|___| | |___ __| |_(_)___ _ _
|
||||
// | (__/ _ \ | / -_) _| _| / _ \ ' \
|
||||
// \___\___/_|_\___\__|\__|_\___/_||_|
|
||||
// ___ _ _ _ _
|
||||
// / __|___| | |___ __| |_(_)___ _ _
|
||||
// | (__/ _ \ | / -_) _| _| / _ \ ' \
|
||||
// \___\___/_|_\___\__|\__|_\___/_||_|
|
||||
|
||||
private function collectionQuery(){
|
||||
$language = \Drupal::languageManager()->getCurrentLanguage()->getId();
|
||||
|
||||
|
||||
$query = \Drupal::entityQuery('taxonomy_term')
|
||||
// ->sort('weight', 'DESC')
|
||||
// ->sort('name', 'DESC')
|
||||
@@ -435,7 +438,10 @@ class CorpusController extends ControllerBase {
|
||||
|
||||
$data['#cache'] = [
|
||||
'max-age' => \Drupal\Core\Cache\Cache::PERMANENT,
|
||||
'tags' => ['edlp-articlesindex-cache']
|
||||
'tags' => ['edlp-articlesindex-cache'],
|
||||
'contexts' => [
|
||||
'languages:language_content'
|
||||
]
|
||||
];
|
||||
|
||||
// $response = new JsonResponse();
|
||||
|
||||
Reference in New Issue
Block a user