我正在使用Typo3(版本4.5.22)创建我的第一个扩展。我正在使用Dmitry Dulepov的“TYPO3扩展开发”一书作为指南(一个非常有用的参考)。我使用Kickstarter来完成任务,其中一个产生的东西是$ TCA,它与数据库中我自己的表一起。
现在,我的理解是,当您创建新的“插入插件”内容项时,TCA会在“插件选项”下确定插件后端中显示的选项。问题是,这一部分仍然是空白。当我选择我的插件时,没有显示任何选项。
我能够构建一个Flexform并让它显示在“插件选项”下,但我的插件中一个非常重要的组件是能够使用“建议”表单来搜索记录,以及从我的'我们读过,使用Flexforms无法正常工作。
我是否在ext_tables中缺少一个简单的函数来让我的TCA显示在“插件选项”部分?对不起,如果我在这里完全偏离基地; Typo3的复杂性让我有些发呆。
这是我的ext_tables.php,由Kickstarter生成:
<?php
if (!defined('TYPO3_MODE')) {
die ('Access denied.');
}
t3lib_extMgm::allowTableOnStandardPages('tx_newsbuilder_newsitems');
t3lib_extMgm::addToInsertRecords('tx_newsbuilder_newsitems');
$TCA['tx_newsbuilder_newsitems'] = array(
'ctrl' => array(
'title' => 'LLL:EXT:newsbuilder/locallang_db.xml:tx_newsbuilder_newsitems',
'label' => 'uid',
'tstamp' => 'tstamp',
'crdate' => 'crdate',
'cruser_id' => 'cruser_id',
'default_sortby' => 'ORDER BY crdate',
'delete' => 'deleted',
'enablecolumns' => array(
'disabled' => 'hidden',
),
'dynamicConfigFile' => t3lib_extMgm::extPath($_EXTKEY) . 'tca.php',
'iconfile' => t3lib_extMgm::extRelPath($_EXTKEY) . 'icon_tx_newsbuilder_newsitems.gif',
),
);
t3lib_div::loadTCA('tt_content');
$TCA['tt_content']['types']['list']['subtypes_excludelist'][$_EXTKEY.'_pi1'] = 'layout,select_key';
t3lib_extMgm::addPlugin(array(
'LLL:EXT:newsbuilder/locallang_db.xml:tt_content.list_type_pi1',
$_EXTKEY . '_pi1',
t3lib_extMgm::extRelPath($_EXTKEY) . 'ext_icon.gif'
),'list_type');
if (TYPO3_MODE === 'BE') {
$TBE_MODULES_EXT['xMOD_db_new_content_el']['addElClasses']['tx_newsbuilder_pi1_wizicon'] = t3lib_extMgm::extPath($_EXTKEY) . 'pi1/class.tx_newsbuilder_pi1_wizicon.php';
}
// Flexform
//$TCA['tt_content']['types']['list']['subtypes_addlist'] [$_EXTKEY . '_pi1'] = 'pi_flexform';
//t3lib_extMgm::addPiFlexFormValue($_EXTKEY . '_pi1', 'FILE:EXT:' . $_EXTKEY . '/pi1/flexform_ds.xml');
?>
此外,还有我的tca.php:
<?php
if (!defined('TYPO3_MODE')) {
die ('Access denied.');
}
$TCA['tx_newsbuilder_newsitems'] = array(
'ctrl' => $TCA['tx_newsbuilder_newsitems']['ctrl'],
'interface' => array(
'showRecordFieldList' => 'hidden,tt_news_uid,singleview_uid,fishback_uid,fishback_url,headline,subheading,link'
),
'feInterface' => $TCA['tx_newsbuilder_newsitems']['feInterface'],
'columns' => array(
'hidden' => array(
'exclude' => 1,
'label' => 'LLL:EXT:lang/locallang_general.xml:LGL.hidden',
'config' => array(
'type' => 'check',
'default' => '0'
)
),
'tt_news_uid' => array(
'exclude' => 0,
'label' => 'LLL:EXT:newsbuilder/locallang_db.xml:tx_newsbuilder_newsitems.tt_news_uid',
'config' => array(
'type' => 'group',
'internal_type' => 'db',
'allowed' => 'NO_TABLE_NAME_AVAILABLE',
'size' => 1,
'minitems' => 0,
'maxitems' => 1,
)
),
'singleview_uid' => array(
'exclude' => 0,
'label' => 'LLL:EXT:newsbuilder/locallang_db.xml:tx_newsbuilder_newsitems.singleview_uid',
'config' => array(
'type' => 'group',
'internal_type' => 'db',
'allowed' => 'tt_news',
'size' => 1,
'minitems' => 0,
'maxitems' => 1,
)
),
'fishback_uid' => array(
'exclude' => 0,
'label' => 'LLL:EXT:newsbuilder/locallang_db.xml:tx_newsbuilder_newsitems.fishback_uid',
'config' => array(
'type' => 'group',
'internal_type' => 'db',
'allowed' => 'pages',
'size' => 1,
'minitems' => 0,
'maxitems' => 1,
)
),
'fishback_url' => array(
'exclude' => 0,
'label' => 'LLL:EXT:newsbuilder/locallang_db.xml:tx_newsbuilder_newsitems.fishback_url',
'config' => array(
'type' => 'input',
'size' => '15',
'max' => '255',
'checkbox' => '',
'eval' => 'trim',
'wizards' => array(
'_PADDING' => 2,
'link' => array(
'type' => 'popup',
'title' => 'Link',
'icon' => 'link_popup.gif',
'script' => 'browse_links.php?mode=wizard',
'JSopenParams' => 'height=300,width=500,status=0,menubar=0,scrollbars=1'
)
)
)
),
'headline' => array(
'exclude' => 0,
'label' => 'LLL:EXT:newsbuilder/locallang_db.xml:tx_newsbuilder_newsitems.headline',
'config' => array(
'type' => 'text',
'cols' => '48',
'rows' => '1',
)
),
'subheading' => array(
'exclude' => 0,
'label' => 'LLL:EXT:newsbuilder/locallang_db.xml:tx_newsbuilder_newsitems.subheading',
'config' => array(
'type' => 'text',
'cols' => '48',
'rows' => '1',
)
),
'link' => array(
'exclude' => 0,
'label' => 'LLL:EXT:newsbuilder/locallang_db.xml:tx_newsbuilder_newsitems.link',
'config' => array(
'type' => 'input',
'size' => '15',
'max' => '255',
'checkbox' => '',
'eval' => 'trim',
'wizards' => array(
'_PADDING' => 2,
'link' => array(
'type' => 'popup',
'title' => 'Link',
'icon' => 'link_popup.gif',
'script' => 'browse_links.php?mode=wizard',
'JSopenParams' => 'height=300,width=500,status=0,menubar=0,scrollbars=1'
)
)
)
),
),
'types' => array(
'0' => array('showitem' => 'hidden;;1;;1-1-1, tt_news_uid, singleview_uid, fishback_uid, fishback_url, headline, subheading, link')
),
'palettes' => array(
'1' => array('showitem' => '')
)
);
?>
答案 0 :(得分:1)
TCA 是表配置数组。它在 Web - &gt;中的TYPO3 BackEnd中的db表中配置记录的外观。列表模块。因此,如果您转到此模块并为tx_newsbuilder_newsitems
创建新条目,则会在tca.php
和ext_tables.php
中配置您的记录创建/编辑表单。
插入页面的插件是一个常用的内容元素,保存在 tt_content 表中,因此会显示,如tt_content的TCA中所定义。但是此表已配置 pi_flexform 字段,其类型为 flex ,并且可以包含内部的灵活数据, FlexForm 实际上是。为此,您需要为FlexForm创建一个正确的XML文件,并指示TYPO3使用它。
In TYPO3 wiki您可以找到有关FlexForms使用的详细信息。
P.S。应该可以在FlexForm中使用 suggest 向导,因为FF表示法与TCA表示法几乎相同,并且所有向导都应该可用。