gpt4 book ai didi

php - 无法为新闻条目生成 TYPO3 tt_news 类别树

转载 作者:可可西里 更新时间:2023-10-31 23:15:37 24 4
gpt4 key购买 nike


我在我的 TYPO3 v7.6.18(刚刚从 6.2.31 升级)中使用 tt_news 扩展我在分类树方面遇到了问题。我为 tt_news 类别渲染做了更多调试,这是目前的问题:

旧的 tca.php 看起来像这样:

'category' => Array(    'exclude' => 1,    'label'   => 'LLL:EXT:tt_news/locallang_tca.xml:tt_news.category',    'config'  => Array(        'type'          => 'select',        'form_type'     => 'user',        'userFunc'      => 'tx_ttnews_TCAform_selectTree->renderCategoryFields',        'treeView'      => 1,        'foreign_table' => 'tt_news_cat',        'autoSizeMax'   => 50,        'minitems'      => $confArr['requireCategories'] ? 1 : 0,        'maxitems'      => 500,        'MM'            => 'tt_news_cat_mm',    ),),

这给了我错误的结果,意思是,我没有得到一棵树,而是一个多选。现在,当我将类型更改为 user 时,出现此错误:

Fatal error: Call to undefined method TYPO3\CMS\Backend\Form\Element\UserElement::addSelectOptionsToItemArray() in /home/portal/typo3project/typo3conf/ext/tt_news/lib/class.tx_ttnews_TCAform_selectTree.php on line 167

我检查了类 tx_ttnews_TCAform_selectTree 方法 renderCategoryFieldsand 中的行,它看起来像这样:

$selItems = $fobj->addSelectOptionsToItemArray($fobj->initItemArray($this->PA['fieldConf']),$this->PA['fieldConf'],$fobj->setTSconfig($table,$row),$field);

$fobj 在函数定义中作为引用:function renderCategoryFields(&$PA, &$fobj) 看起来,它在某处定义错误,因为addSelectOptionsToItemArray 位于 FormEngine UserElement

由于该方法在 tca 中被调用,如 tx_ttnews_TCAform_selectTree->renderCategoryFields 我无法更改类,它正在使用。

有什么解决办法吗?

最佳答案

从 TYPO3 7 开始,您不需要定义自定义用户函数来将列表呈现为树。有一个 renderType TCA configuration option对于选择类型的字段,可以通过selectTree 值定义树渲染。

所以配置应该如下所示:

'category' => Array(
'exclude' => 1,
'label' => 'LLL:EXT:tt_news/locallang_tca.xml:tt_news.category',
'config' => Array(
'type' => 'select',
'renderType' => 'selectTree',
'foreign_table' => 'tt_news_cat',
'autoSizeMax' => 50,
'minitems' => $confArr['requireCategories'] ? 1 : 0,
'maxitems' => 500,
'MM' => 'tt_news_cat_mm',
'treeConfig' => array(
'parentField' => 'parent_category',
),
),
),

此外,您可能想使用 treeConfig configuration option进行一些视觉调整。

关于php - 无法为新闻条目生成 TYPO3 tt_news 类别树,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44241327/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com