我正在尝试使用后端列表记录创建我的第一个TYPO3扩展程序。
现在我可以注册我自己的列表记录,但它们在tt_news下注册如下:
当然我想让我的扩展程序拥有像tt_news那样的自己的父类别。
新闻
Inventoy
有人有这方面的经验吗?
到目前为止我的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')
)
);
?>