14 lines
247 B
PHP
14 lines
247 B
PHP
<?php
|
|
|
|
defined('TYPO3') or die();
|
|
|
|
$fields = [
|
|
'tx_impexp_origuid' => [
|
|
'config' => [
|
|
'type' => 'passthrough',
|
|
],
|
|
],
|
|
];
|
|
|
|
\TYPO3\CMS\Core\Utility\ExtensionManagementUtility::addTCAcolumns('tt_content', $fields);
|