[TASK] Work on compatibility for TYPO3 11
This commit is contained in:
parent
fb54d608a6
commit
7f3123b61a
@ -170,22 +170,6 @@ class ActionController extends BaseController
|
||||
$this->environmentService = $environmentService;
|
||||
}
|
||||
|
||||
/**
|
||||
* propertyMapper
|
||||
*
|
||||
* @var PropertyMapper
|
||||
*/
|
||||
protected $propertyMapper;
|
||||
|
||||
/**
|
||||
* @param
|
||||
*/
|
||||
public function injectPropertyMapper(
|
||||
PropertyMapper $propertyMapper
|
||||
): void {
|
||||
$this->propertyMapper = $propertyMapper;
|
||||
}
|
||||
|
||||
/**
|
||||
* propertyMappingConfigurationBuilder
|
||||
*
|
||||
@ -776,11 +760,36 @@ class ActionController extends BaseController
|
||||
}
|
||||
if ($this->pageType) {
|
||||
if (is_array($this->responseStatus)) {
|
||||
$this->response->setStatus(
|
||||
array_key_first($this->responseStatus)
|
||||
);
|
||||
if (version_compare(TYPO3_branch, '10.0', '>=')) {
|
||||
$response = $this
|
||||
->responseFactory
|
||||
->createResponse()
|
||||
->withHeader(
|
||||
'Content-Type',
|
||||
'application/json; charset=utf-8'
|
||||
)
|
||||
->withStatus(
|
||||
array_key_first($this->responseStatus),
|
||||
''
|
||||
);
|
||||
} else {
|
||||
$this->response->setStatus(
|
||||
array_key_first($this->responseStatus)
|
||||
);
|
||||
}
|
||||
} else {
|
||||
$this->response->setStatus($this->responseStatus);
|
||||
if (version_compare(TYPO3_branch, '10.0', '>=')) {
|
||||
$response = $this
|
||||
->responseFactory
|
||||
->createResponse()
|
||||
->withHeader(
|
||||
'Content-Type',
|
||||
'application/json; charset=utf-8'
|
||||
)
|
||||
->withStatus($this->responseStatus, '');
|
||||
} else {
|
||||
$this->response->setStatus($this->responseStatus);
|
||||
}
|
||||
}
|
||||
if ($this->pageType == $this->ajaxPageType) {
|
||||
if ($this->environmentService->isEnvironmentInBackendMode()) {
|
||||
|
@ -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) {
|
||||
|
14
Configuration/TCA/Overrides/tt_content.php
Normal file
14
Configuration/TCA/Overrides/tt_content.php
Normal file
@ -0,0 +1,14 @@
|
||||
<?php
|
||||
defined('TYPO3') || die();
|
||||
|
||||
\TYPO3\CMS\Extbase\Utility\ExtensionUtility::registerPlugin(
|
||||
'TemplatesAide',
|
||||
'Dummy',
|
||||
'dummy'
|
||||
);
|
||||
|
||||
\TYPO3\CMS\Extbase\Utility\ExtensionUtility::registerPlugin(
|
||||
'TemplatesAide',
|
||||
'Translationplugin',
|
||||
'translation'
|
||||
);
|
@ -23,7 +23,6 @@ $EM_CONF[$_EXTKEY] = [
|
||||
'version' => '0.0.1',
|
||||
'constraints' => [
|
||||
'depends' => [
|
||||
'typo3' => '8.7.0-10.99.99',
|
||||
],
|
||||
'conflicts' => [],
|
||||
'suggests' => [],
|
||||
|
@ -1,36 +1,59 @@
|
||||
<?php
|
||||
defined('TYPO3_MODE') || die('Access denied.');
|
||||
|
||||
|
||||
(static function() {
|
||||
|
||||
|
||||
})();
|
||||
|
||||
call_user_func(
|
||||
function()
|
||||
{
|
||||
if (version_compare(TYPO3_branch, '10.0', '>=')) {
|
||||
|
||||
\TYPO3\CMS\Extbase\Utility\ExtensionUtility::configurePlugin(
|
||||
'Cjel.TemplatesAide',
|
||||
'Dummy',
|
||||
[
|
||||
'Dummy' => 'list',
|
||||
'Translation' => 'translations'
|
||||
],
|
||||
// non-cacheable actions
|
||||
[
|
||||
'Dummy' => '',
|
||||
'Translation' => ''
|
||||
]
|
||||
);
|
||||
\TYPO3\CMS\Extbase\Utility\ExtensionUtility::configurePlugin(
|
||||
'TemplatesAide',
|
||||
'Translationplugin',
|
||||
[
|
||||
\Cjel\TemplatesAide\Controller\TranslationController::class => 'translations'
|
||||
],
|
||||
// non-cacheable actions
|
||||
[
|
||||
\Cjel\TemplatesAide\Controller\TranslationController::class => ''
|
||||
]
|
||||
);
|
||||
|
||||
\TYPO3\CMS\Extbase\Utility\ExtensionUtility::configurePlugin(
|
||||
'Cjel.TemplatesAide',
|
||||
'Translationplugin',
|
||||
[
|
||||
'Translation' => 'translations'
|
||||
],
|
||||
// non-cacheable actions
|
||||
[
|
||||
'Dummy' => '',
|
||||
'Translation' => ''
|
||||
]
|
||||
);
|
||||
} else {
|
||||
|
||||
\TYPO3\CMS\Extbase\Utility\ExtensionUtility::configurePlugin(
|
||||
'Cjel.TemplatesAide',
|
||||
'Dummy',
|
||||
[
|
||||
'Dummy' => 'list',
|
||||
'Translation' => 'translations'
|
||||
],
|
||||
// non-cacheable actions
|
||||
[
|
||||
'Dummy' => '',
|
||||
'Translation' => ''
|
||||
]
|
||||
);
|
||||
|
||||
\TYPO3\CMS\Extbase\Utility\ExtensionUtility::configurePlugin(
|
||||
'Cjel.TemplatesAide',
|
||||
'Translationplugin',
|
||||
[
|
||||
'Translation' => 'translations'
|
||||
],
|
||||
// non-cacheable actions
|
||||
[
|
||||
'Dummy' => '',
|
||||
'Translation' => ''
|
||||
]
|
||||
);
|
||||
|
||||
}
|
||||
|
||||
// wizards
|
||||
\TYPO3\CMS\Core\Utility\ExtensionManagementUtility::addPageTSConfig(
|
||||
|
Loading…
x
Reference in New Issue
Block a user