[TYPO3-english] $TCA image filelist-module is not beening updated
Muriel le Pair
typo3 at strangefruit.nl
Wed Dec 21 13:44:44 CET 2016
Hi,
I have updated a site from TYPO3 6.1 to 6.2.29.
In TYPO3 6.2 the references made from extensions to files don't get
counted as a reference in the filelist-module any more.
Steps to reproduce:
1) Add a image to an extension
2) Check the number of references for this file in the filelist-module
3) The number should get increased, but it doesn't (it does work in
works tx_news and with content element's)
TCA:
Not working:
'image' => array(
'exclude' => 1,
'label' =>
'LLL:EXT:sf_accordion/Resources/Private/Language/locallang_db.xlf:tx_sfaccordion_domain_model_items.image',
'config' => array(
'type' => 'group',
'internal_type' => 'file',
'uploadfolder' => 'uploads/tx_sfaccordion',
'show_thumbs' => 1,
'size' => 5,
'allowed' => $GLOBALS['TYPO3_CONF_VARS']['GFX']['imagefile_ext'],
'disallowed' => '',
),
),
Working example of tx_news:
'image' => array(
'exclude' => 0,
'l10n_mode' => 'copy',
'label' => $ll . 'tx_news_domain_model_media.media',
'config' => array(
'type' => 'group',
'internal_type' => 'file',
'allowed' => $GLOBALS['TYPO3_CONF_VARS']['GFX']['imagefile_ext'],
'max_size' => $GLOBALS['TYPO3_CONF_VARS']['BE']['maxFileSize'],
'uploadfolder' => 'uploads/tx_news',
'show_thumbs' => 1,
'size' => 1,
'minitems' => 1,
'maxitems' => 1,
)
),
What am I missing, what do I need to do to update the filelist-module?
--
kind regards,
Muriel le Pair
More information about the TYPO3-english
mailing list