我从typo3 4.5.0升级到6.2.14并且我遇到了自定义扩展的问题,其中一个功能是包含存储在扩展目录中的自定义插件。
将要包含的插件使用下面的代码。此代码的位置在extensionkey / ext_tables.php
中if (file_exists($path) && is_dir($path)) {
$files = scandir($path);
foreach ($files as $f) {
if (is_dir($path.$f) && $f!='.' && $f!='..' && $f!='.svn') {
$TCA['tt_content']['types']['list']['subtypes_excludelist'][$_EXTKEY.'_'.$f]='layout,select_key,pages';
$confArr = array('LLL:EXT:extensionkey/locallang_db.xml:tt_content.list_type_'.$f, $_EXTKEY.'_'.$f, '');
t3lib_extMgm::addPlugin($confArr,'list_type');
}
}
}