.. ================================================== .. FOR YOUR INFORMATION .. -------------------------------------------------- .. -*- coding: utf-8 -*- with BOM. .. include:: ../../../../Includes.txt .. _administrators_setup_tca_sample: .. index:: single: TCA; Sample Sample ====== Configuration Array ------------------- .. code:: typoscript $TCA = [ 'ctrl' => [ 'extensions' => [ 'xblog' => [ 'enabled' => true, 'showUid' => 'newsUid', 'plugins' => [ 'pi17' => [ 'datefield' => 'datetime', ], 'pi18' => [ 'tagcloudfield' => 'seo_keywords', ], ], ], ], ], ], tx_org_news ----------- If you like to extend any table of the TYPO3 database, please use an own file in TCA/Overrides like: * EXT:your-extension-key/Configuration/TCA/Overrides/tx_org_news.php .. code:: typoscript $GLOBALS['TCA'][tx_org_news]['ctrl']['extensions']['xblog']['enabled'] = 1; $GLOBALS['TCA'][tx_org_news]['ctrl']['extensions']['xblog']['showUid'] = 'newsUid'; $GLOBALS['TCA'][tx_org_news]['ctrl']['extensions']['xblog']['plugins']['pi17']['datefield'] = 'datetime' $GLOBALS['TCA'][tx_org_news]['ctrl']['extensions']['xblog']['plugins']['pi18']['tagcloudfield'] = 'seo_keywords'