TYPO3-6.2 Extbase自定义内容类型 - >无效值

时间:2014-08-08 09:57:36

标签: typo3 extbase typo3-6.2.x

我为自定义内容元素制作了一个extbase扩展。由于这是我的第一个扩展,我开始使用简单的" hello_world_ce"。这是我的档案:

ext_tables.php

<?php
$TCA['tt_content']['types']['hello_world_ce']['showitem'] = '--palette--;LLL:EXT:hello_world/Resources/Private/Language/locallang_mod.xlf:content_element.hello_world.general;general, --palette--;LLL:EXT:hello_world/Resources/Private/Language/locallang_mod.xlf:content_element.hello_world.header;header';

ext_localconf.php

<?php
\TYPO3\CMS\Core\Utility\ExtensionManagementUtility::addPageTSConfig('<INCLUDE_TYPOSCRIPT: source="FILE:EXT:'.$_EXTKEY.'/Configuration/TypoScript/ModWizards.ts">');

ModWizards.ts

mod.wizards {
    newContentElement {
        wizardItems {
            hello_world {
                header = LLL:EXT:hello_world/Resources/Private/Language/locallang_mod.xlf:content_tab_header
                elements {
                    hello_world_ce {
                        icon = gfx/c_wiz/regular_header.gif
                        title = LLL:EXT:hello_world/Resources/Private/Language/locallang_mod.xlf:content_element.hello_world
                        description = LLL:EXT:hello_world/Resources/Private/Language/locallang_mod.xlf:content_element.hello_world.description
                        tt_content_defValues {
                            CType = hello_world_ce
                        }
                    }
                }
            }
            show = *
        }
    }
}

在TYPO3后端我看到了我的内容元素,可以将其添加到页面,但内容类型的下拉菜单显示无效值(&#34; hello_world_ce&#34;)

我错过了什么?

编辑:我找到了缺失的部分。我需要将我的内容类型添加到CType数组

ext_tables.php

$backupCTypeItems = $GLOBALS['TCA']['tt_content']['columns']['CType']['config']['items'];
$GLOBALS['TCA']['tt_content']['columns']['CType']['config']['items'] = array(
    array(
        'LLL:EXT:'.$_EXTKEY.'/Resources/Private/Language/locallang_mod.xlf:content_tab_header',
        '--div--'
    ),
    array(
        'LLL:EXT:'.$_EXTKEY.'/Resources/Private/Language/locallang_mod.xlf:content_element.hello_world',
        'hello_world_ce',
        'i/tt_content_header.gif'
    )
);
foreach($backupCTypeItems as $key => $value){
    $GLOBALS['TCA']['tt_content']['columns']['CType']['config']['items'][] = $value;
}

1 个答案:

答案 0 :(得分:1)

问题已被编辑,但我认为有更好的方法来实现解决方案。

只有明确问题:

通过添加新的内容元素,内容元素 hello_world_ce 未添加到“类型”下拉列表中。

问题中的提示是正确的,它没有为CType字段定义。 但是,不是操纵数组,而是使用核心函数:

 // Adds the content element to the "Type" dropdown
\TYPO3\CMS\Core\Utility\ExtensionManagementUtility::addPlugin(
   array(
      'LLL:EXT:your_extension_key/Resources/Private/Language/locallang_mod.xlf:content_element.hello_world',
      'hello_world_ce',
      'i/tt_content_header.gif'
   ),
   'CType',
   'your_extension_key'
);

以下是如何在版本TYPO3 7.6中添加自己的内容元素的一个很好的示例。

注意:此功能也可在TYPO3 6.2中访问。