1

我正在尝试使用后端列表记录创建我的第一个 TYPO3 扩展。

现在我可以注册我自己的列表记录,但它们在 tt_news 下注册,如下所示:

  • 消息
    • 消息
    • 新闻猫
    • 存货

当然,我想让我的扩展程序有它自己的父类别,就像 tt_news 一样。

  • 消息

    • 消息
    • 新闻猫
  • 库存

    • 库存项目

有人有这方面的经验吗?

到目前为止,我的 ext_tables.php:

<?php
if (!defined ('TYPO3_MODE')) die ('Access denied.');

$TCA['tx_inventory_domain_model_product'] = array (
'ctrl' => array (
        'title' => 'Inventory',
        'label' => 'name',
),
'columns' => array(
        'name' => array(
        'label' => 'Item Label',
                'config' => array(
                        'type' => 'input',
                        'size' => '20',
                        'eval' => 'trim,required'
                )
        ),
        'description' => array(
                'label' => 'Item Description',
                'config' => array(
                        'type' => 'text',
                        'eval' => 'trim'
                )
        ),
        'quantity' => array(
                'label' => 'Stock Quantity',
                'config' => array(
                        'type' => 'input',
                        'size' => '4',
                        'eval'=> 'int'
                )
        ),
),
'types' => array(
        '0' => array('showitem' => 'name, description, quantity')
)
);
?>
4

0 回答 0