后端的自定义字段,带有新扩展名

时间:2012-03-28 14:41:59

标签: typo3

当我使用Quickstarter构建新扩展时,我使用以下行自定义文件ext_tables.php的后端:

$TCA['tt_content']['types'][$_EXTKEY . '_pi1']['showitem'] = 'CType, header,media;Images';

我可以添加新字段甚至重命名。但有时我会发现每个字段都有奇怪的后缀,例如“media ;;;; 1-1-1”,它控制着后端控件周围出现的其他内容。

我怎么知道这些代码是什么意思?

1 个答案:

答案 0 :(得分:2)

看看TCA Documentation有类型部分的描述($ TCA ['tt_content'] ['types'])。在这里有一个表格,其中解释了['showitem']。

Part 1: Field name reference (Required!)

Part 2: Alternative field label (string or LLL reference)

Part 3: Palette number (referring to an entry in the "palettes" section).

Part 4: Special configuration (split by colon ( : )), e.g. 'nowrap' and 'richtext[(list of keys or *)]' (see “Additional $TCA features”)

Part 5: Form style codes (see “Visual style of TCEforms”)