我想在新新闻模块的后端添加一个字段。为此,我创建了一个包含3个文件的新扩展名:
ext_emconf.php
<?php
$EM_CONF[$_EXTKEY] = array(
'title' => 'Expand news',
'description' => 'Expand news',
'category' => 'fe',
'author' => 'SOG',
'author_email' => '-',
'shy' => '',
'dependencies' => '',
'conflicts' => '',
'priority' => '',
'module' => '',
'state' => 'stable',
'internal' => '',
'uploadfolder' => 0,
'createDirs' => '',
'modify_tables' => '',
'clearCacheOnLoad' => 0,
'lockType' => '',
'author_company' => '',
'version' => '0.1.0',
'constraints' => array(
'depends' => array(
),
'conflicts' => array(
),
'suggests' => array(
),
),
'_md5_values_when_last_written' => '',
'suggests' => array(
),
);
?>
ext_tables.php
<?php
/*if (!defined('TYPO3_MODE')) {
die ('Access denied.');
}*/
$tempColumns = array(
'tx_sogexpandnews_test' => array(
'exclude' => 0,
'label' => 'test',
'config' => array(
'type' => 'text',
'cols' => '30',
'rows' => '5',
)
),
);
t3lib_div::loadTCA('tx_news_domain_model_news');
t3lib_extMgm::addTCAcolumns('tx_news_domain_model_news',$tempColumns,1);
t3lib_extMgm::addToAllTCAtypes('tx_news_domain_model_news','tx_sogexpandnews_test', '', 'after:title'));
?>
ext_tables.sql
#
# Table structure for table 'news'
#
CREATE TABLE tx_news_domain_model_news (
tx_sogexpandnews_test text
);
该字段位于数据库中,但是当我想要创建新的新闻时,我在后端看不到该字段。
我还检查了LocalConfiguation.php并确保我的扩展程序位于新闻扩展名下。
知道我想念的吗?
答案 0 :(得分:2)
我不知道为什么,但我停用了新闻,更新了它并再次安装,现在我看到了这个领域。
答案 1 :(得分:2)
缓存 - 缓存 - 缓存...始终缓存。
如果您需要确定,请始终删除typo3temp中的所有内容并刷新数据库中的所有cf_ *表。
(停用并重新安装几乎也是如此)