TCA" internal_type" =>具有自动完成功能的文件

时间:2014-03-30 10:33:12

标签: typo3 typo3-6.2.x

我对TYPO3(6.2)TCA和自动填充有疑问。我已经将它用于表格。成功。现在我有一个非表格的案例 - 文件夹里装满了PDF文件......

是否可以处理上传文件夹中的文件?我试过这样...... Autocompletefield来了,但它显示“没有找到结果”......有任何相关的想法吗?

    'file' => array(
        'exclude' => 0,
        'label' => 'LLL:EXT:src_products/Resources/Private/Language/locallang_db.xlf:tx_srcproducts_domain_model_files.file',
        'config' => array(
            'type' => 'group',
            'internal_type' => 'file',
            'uploadfolder' => 'uploads/tx_srcproducts',
            'allowed' => 'gif,jpg,pdf',
            'disallowed' => 'php',
            'size' => 5,
            'wizards' => array(
                'uproc' => array(
                    'type' => 'userFunc',
                    'userFunc' => 'user_class->user_TCAform_procWizard',
                ),
                'suggest' => array(
                    'type' => 'suggest',
                ),
            )

        ),
    ),

1 个答案:

答案 0 :(得分:0)

我查看了official documentation(搜索“建议”):

  

这将在组类型字段的选择器(当internal_type为db)或select-type字段(使用foreign_table)的选择器旁边呈现输入字段。

因此,似乎无法将此向导用于文件和文件夹。