added language context to json cache to articles and collection

This commit is contained in:
2018-11-21 14:14:50 +01:00
parent 14be53519a
commit 80f02c3250
@@ -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();