mirror of
https://github.com/werkraum-media/thuecat.git
synced 2024-11-05 12:56:11 +01:00
72 lines
2.4 KiB
PHP
72 lines
2.4 KiB
PHP
|
<?php
|
||
|
|
||
|
defined('TYPO3') or die();
|
||
|
|
||
|
return (static function (string $extensionKey, string $tableName) {
|
||
|
$languagePath = \WerkraumMedia\ThueCat\Extension::getLanguagePath() . 'locallang_tca.xlf:' . $tableName;
|
||
|
$flexFormConfigurationPath = 'FILE:EXT:' . \WerkraumMedia\ThueCat\Extension::EXTENSION_KEY . '/Configuration/FlexForm/';
|
||
|
|
||
|
return [
|
||
|
'ctrl' => [
|
||
|
'label' => 'title',
|
||
|
'default_sortby' => 'title',
|
||
|
'tstamp' => 'tstamp',
|
||
|
'crdate' => 'crdate',
|
||
|
'cruser_id' => 'cruser_id',
|
||
|
'title' => $languagePath,
|
||
|
'enablecolumns' => [
|
||
|
'disabled' => 'disable',
|
||
|
],
|
||
|
'searchFields' => 'title',
|
||
|
'rootLevel' => 1,
|
||
|
],
|
||
|
'columns' => [
|
||
|
'title' => [
|
||
|
'label' => $languagePath . '.title',
|
||
|
'config' => [
|
||
|
'type' => 'input',
|
||
|
'max' => 255,
|
||
|
'eval' => 'required,trim,unique',
|
||
|
],
|
||
|
],
|
||
|
'type' => [
|
||
|
'label' => $languagePath . '.type',
|
||
|
'config' => [
|
||
|
'type' => 'select',
|
||
|
'renderType' => 'selectSingle',
|
||
|
'items' => [
|
||
|
[
|
||
|
$languagePath . '.type.static',
|
||
|
'static',
|
||
|
],
|
||
|
],
|
||
|
],
|
||
|
],
|
||
|
'configuration' => [
|
||
|
'label' => $languagePath . '.configuration',
|
||
|
'config' => [
|
||
|
'type' => 'flex',
|
||
|
'ds_pointerField' => 'type',
|
||
|
'ds' => [
|
||
|
'default' => $flexFormConfigurationPath . 'ImportConfiguration/Static.xml',
|
||
|
'static' => $flexFormConfigurationPath . 'ImportConfiguration/Static.xml',
|
||
|
],
|
||
|
],
|
||
|
],
|
||
|
'tstamp' => [
|
||
|
'config' => [
|
||
|
'type' => 'input',
|
||
|
'renderType' => 'inputDateTime',
|
||
|
'eval' => 'datetime',
|
||
|
'readOnly' => true,
|
||
|
],
|
||
|
],
|
||
|
],
|
||
|
'types' => [
|
||
|
'0' => [
|
||
|
'showitem' => 'title, type, configuration',
|
||
|
],
|
||
|
],
|
||
|
];
|
||
|
})(\WerkraumMedia\ThueCat\Extension::EXTENSION_KEY, 'tx_thuecat_import_configuration');
|