Modify $TCA

From TYPO3Wiki

Jump to: navigation, search

<< Back to Extension Development << Back to Developer manuals page

[edit]

This is an example for setting the maximum filesize for the multimedia field in Content Elements. This php code must be written into the file "ext_tables.php" in your extension

<PHP> :
 
 <?php
 t3lib_div::loadTCA('tt_content'); 
 $TCA['tt_content']['columns']['multimedia']['config']['max_size'] = 20000;
 ?>
 

--Chibox 13:16, 2 June 2008 (CEST)

Personal tools