Modify $TCA
From TYPO3Wiki
<< Back to Extension Development << Back to Developer manuals page
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)
