[TASK] Work on compatibility for TYPO3 11

This commit is contained in:
2024-11-28 15:19:38 +01:00
parent fb54d608a6
commit 7f3123b61a
5 changed files with 98 additions and 48 deletions

View File

@@ -41,9 +41,14 @@ class TranslationController extends \TYPO3\CMS\Extbase\Mvc\Controller\ActionCont
$languageFactory = GeneralUtility::makeInstance(
LocalizationFactory::class
);
$language = $this->request->getAttribute('language');
$locale = $language->getLocale();
//\TYPO3\CMS\Extbase\Utility\DebuggerUtility::var_dump(
// $locale, '$locale', 3, true, false
//);
$langfileContent = $languageFactory->getParsedData(
$langfilePath,
$GLOBALS['LANG']->lang
$locale
);
$langfileResult = [];
foreach (reset($langfileContent) as $key => $row) {