TYPO3中FlexForm未显示可切换控制器操作中的元素。

3

我有问题无法弄清楚我的可切换控制器操作出了什么问题。

我正在使用TYPO3 v7.6.10

在extentionkey/Configuration/TCA/Overrides/tt_content.php中的条目:

$pluginSignature = 'simpleblog_bloglisting';
$GLOBALS['TCA']['tt_content']['types']['list']['subtypes_addlist'][$pluginSignature] = 'pi_flexform';
\TYPO3\CMS\Core\Utility\ExtensionManagementUtility::addPiFlexFormValue($pluginSignature, 'FILE:EXT:simpleblog/Configuration/FlexForms/FF_Simpleblog_Bloglisting.xml' );

extentionkey/Configuration/TCA/FlexForms/FF_Simpleblog_Bloglisting.xml:

<T3DataStructure>
    <sheets>
        <sDEF>
            <ROOT>
                <TCEforms>
                    <sheetTitle>Blog Config</sheetTitle>
                </TCEforms>
                <type>array</type>
                <el>
                    <settings.blog.max>
                        <TCEforms>
                            <label>Max number of Blogs</label>
                            <config>
                                <type>input</type>
                                <size>2</size>
                                <eval>int</eval>
                                <default>4</default>
                            </config>
                        </TCEforms>
                    </settings.blog.max>
                    <settings.blog.min>
                        <TCEforms>
                            <label>Page Browser</label>
                            <config>
                                <type>group</type>
                                <internal_type>db</internal_type>
                                <allowed>pages</allowed>
                                <size>1</size>
                                <maxitems>1</maxitems>
                                <minitems>0</minitems>
                                <show_thumbs>1</show_thumbs>
                            </config>
                        </TCEforms>
                    </settings.blog.min>
                    <switchableControllerActions>
                        <TCEForms>
                            <label>Type</label>
                            <config>
                                <type>select</type>
                                <items type="array">
                                    <numIndex index="0" type="array">
                                        <numIndex index="0">read only</numIndex>
                                        <numIndex index="1">Blog->list;Blog->show</numIndex>
                                    </numIndex>
                                    <numIndex index="1" type="array">
                                        <numIndex index="0">writable</numIndex>
                                        <numIndex index="1">Blog->list;Blog->show;Blog->deleteConfirm;Blog->delete</numIndex>
                                    </numIndex>
                                </items>
                            </config>
                        </TCEForms>
                    </switchableControllerActions>
                </el>
            </ROOT>
        </sDEF>
    </sheets>
</T3DataStructure>
<settings.blog.max>标签内的元素将被显示,但</switchableControllerActions>标签内的元素不会显示。
1个回答

4

我很确定这是以下错别字:TCEFormsTCEforms - 注意f的大小写。


谢谢!那就是问题所在。 - Fiftywebs

网页内容由stack overflow 提供, 点击上面的
可以查看英文原文,
原文链接