如果您想在TYPO3在后台数据编辑页面多加TAB方法
1.在页面ext_tables.php,加上 ‘dividers2tabs’ => TRUE,
‘dividers2tabs’ => TRUE 加在$tca[‘table_name’][‘ctrl’]这个数组中
2.在页面tca.php, 加上"–div–;tabName”
把这个代码
"types" => array (
"0" => array("showitem" => "category;;;;1-1-1, sub_category,new_category, headline, description;;;richtext[paste|bold|italic|,ads_type,ads,ads_alt,ads_link")
),
修改成
"types" => array (
"0" => array("showitem" => "–div–;Category,category;;;;1-1-1, sub_category,new_category, headline, description;;;richtext[paste|bold|italic|,–div–;Ads,ads_type,ads,ads_alt,ads_link")
),
效果如图:
若转载请注明出处: TYPO3中文网
本文地址: http://www.51typo3.cn/typo3/10.html