在错误3 6.2.14中的addPlugin函数问题

时间:2015-08-21 14:01:58

标签: php typo3 typo3-6.2.x

我从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');
            }
        }
    }

0 个答案:

没有答案