我在TYPO3 v7.6.18上使用tt_news
扩展名(刚刚从6.2.31升级)
我遇到了类别树的问题。我为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
。
由于这个方法是在tx_ttnews_TCAform_selectTree->renderCategoryFields
之类的tca中调用的,所以我无法更改类,所以它正在使用。
任何想法如何解决这个问题?
答案 0 :(得分:3)
从TYPO3开始,您不需要定义自定义用户函数来将列表呈现为树。选择类型字段有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进行视觉调整。