'main_photos' => array(
'exclude' => 0,
'label' => 'LLL:EXT:my_ext.main_photos',
'config' => array(
'type' => 'group',
'internal_type' => 'file',
'uploadfolder' => 'uploads/LLL:EXT:my_ext',
'show_thumbs' => 1,
'size' => 5,
'allowed' => $GLOBALS['TYPO3_CONF_VARS']['GFX']['imagefile_ext'],
'disallowed' => '',
'minitems' => 0,
'maxitems' => 10,
),
),
答案 0 :(得分:2)
正如文档中描述的那样。
https://docs.typo3.org/typo3cms/TCAReference/Reference/Ctrl/Index.html#thumbnail
在配置中添加一个键“缩略图”,并将其指向包含您要用作缩略图的图像的列名。
'config'=>array(
...
'thumbnail' => 'image',
...
)