The problem occurs in the file ext_tables.php in function call_user_func(function (). If I will replace
call_user_func(function () {
..................................................................
if (!\In2code\Femanager\Utility\ConfigurationUtility::isDisableModuleActive() &&
!(TYPO3_REQUESTTYPE & TYPO3_REQUESTTYPE_INSTALL)) {
\TYPO3\CMS\Extbase\Utility\ExtensionUtility::registerModule(
'In2code.femanager',
'web',
'm1',
'',
[
'UserBackend' => 'list,userLogout'
],
[
'access' => 'user,group',
'icon' => 'EXT:femanager/ext_icon.svg',
'labels' => 'LLL:EXT:femanager/Resources/Private/Language/locallang_mod.xlf',
]
);
}
...............................................................
to
call_user_func(function () {
.................................
if (!(TYPO3_REQUESTTYPE & TYPO3_REQUESTTYPE_INSTALL)) {
\TYPO3\CMS\Extbase\Utility\ExtensionUtility::registerModule(
'In2code.femanager',
'web',
'm1',
'',
[
'UserBackend' => 'list,userLogout'
],
[
'access' => 'user,group',
'icon' => 'EXT:femanager/ext_icon.svg',
'labels' => 'LLL:EXT:femanager/Resources/Private/Language/locallang_mod.xlf',
]
);
}
.............................
then the error disappears, but there is a new when I try to log in the extension
"Could not analyse class: "In2code\Femanager\Persistence\Generic\Mapper\DataMap" maybe not loaded or no autoloader? Class In2code\Femanager\Persistence\Generic\Mapper\DataMap does not exist"
I would like to remove this extension, it makes me sad =(