我在typo3中有一个扩展名。我想使用 itemsProcFunc 进行单选按钮选择:
<radField>
<label>Radiobuttons</label>
<config>
<type>radio</type>
<itemsProcFunc>CM\Parser\UserFunc\FlexFormUserFunc->getNames</itemsProcFunc>
</config>
</radField>
不幸的是,我收到以下错误消息:
Item itemsProcFunc of field radField of TCA table tt_content is no array as exepcted
我也用选择框尝试过:
<dynField>
<TCEforms>
<label>dynamic content</label>
<config>
<type>select</type>
<renderType>selectSingle</renderType>
<itemsProcFunc>CM\Parser\UserFunc\FlexFormUserFunc->getNames</itemsProcFunc>
</config>
</TCEforms>
</dynField>
使用选择框,它可以工作,但我得到第一个条目 [无效值],我无法从下拉列表中删除。但是,如果我使用
<renderType>selectCheckBox</renderType>
相反,我没有得到无效值,但是我可以选择多个我不想的选项。
其背后的 php 文件如下所示:
class FlexFormUserFunc {
function getNames($config) {
$fileList = array();
$i=0;
$pathParts = "";
foreach(glob(__DIR__ . "/formatClasses/*.php") as $fileName) {
$pathParts = pathinfo($fileName);
$fileList[$i] = array( 0 => $pathParts['filename'], 1 => $pathParts['basename'] );
$i++;
}
$config['items'] = array_merge($config['items'],$fileList);
return $config;
}
}
谢谢你的帮助。