TYPO3 v15 dev-main snapshot ()

This commit is contained in:
2026-08-10 22:31:28 +02:00
commit 3a4ca58ca1
90 changed files with 9646 additions and 0 deletions
+13
View File
@@ -0,0 +1,13 @@
<?php
defined('TYPO3') or die();
$fields = [
'tx_impexp_origuid' => [
'config' => [
'type' => 'passthrough',
],
],
];
\TYPO3\CMS\Core\Utility\ExtensionManagementUtility::addTCAcolumns('pages', $fields);
@@ -0,0 +1,13 @@
<?php
defined('TYPO3') or die();
$fields = [
'tx_impexp_origuid' => [
'config' => [
'type' => 'passthrough',
],
],
];
\TYPO3\CMS\Core\Utility\ExtensionManagementUtility::addTCAcolumns('sys_template', $fields);
@@ -0,0 +1,13 @@
<?php
defined('TYPO3') or die();
$fields = [
'tx_impexp_origuid' => [
'config' => [
'type' => 'passthrough',
],
],
];
\TYPO3\CMS\Core\Utility\ExtensionManagementUtility::addTCAcolumns('tt_content', $fields);
+53
View File
@@ -0,0 +1,53 @@
<?php
return [
'ctrl' => [
'title' => 'impexp.db:tx_impexp_presets',
'label' => 'title',
'default_sortby' => 'title',
'tstamp' => 'tstamp',
'crdate' => 'crdate',
'typeicon_classes' => [
'default' => 'actions-cog',
],
'hideTable' => true,
'rootLevel' => -1,
],
'columns' => [
'title' => [
'label' => 'impexp.db:title',
'config' => [
'type' => 'passthrough',
],
],
'public' => [
'label' => 'impexp.db:public',
'config' => [
'type' => 'passthrough',
],
],
'user_uid' => [
'label' => 'impexp.db:user_uid',
'config' => [
'type' => 'passthrough',
],
],
'item_uid' => [
'label' => 'impexp.db:item_uid',
'config' => [
'type' => 'passthrough',
],
],
'preset_data' => [
'label' => 'impexp.db:preset_data',
'config' => [
'type' => 'passthrough',
],
],
],
'types' => [
0 => [
'showitem' => 'title, public, user_uid, item_uid, preset_data',
],
],
];