Typo3 TCA 标记拇指照片

Typo3 TCA mark thumb photo

    '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,
        ),
    ),

我有多个图片加载器。我想将其中一张照片标记为主要照片,例如在新闻中。 我该怎么做?

正如文档中描述的那样。

https://docs.typo3.org/typo3cms/TCAReference/Reference/Ctrl/Index.html#thumbnail

在您的配置中添加一个键 'thumbnail' 并让它指向包含您想要用作缩略图的图像的列名。

'config'=>array(
    ...
    'thumbnail' => 'image',
    ...
)