- New Classes/Service/ContentElementResolver.php: parses TYPO3 typolink
(t3://record?identifier=tt_content&uid=N, t3://page?uid=P#N, plain numeric)
to a normalised tt_content envelope ({id,type,colPos,sorting,appearance,
data}), recursively resolving any nested VITEC list-plugin children.
- ProductListJsonRenderer / ProductShowJsonRenderer: contentelement and
contentelementcta now emit the resolved object instead of the raw
typolink string (breaking change at those two keys).
- Product model: new field videofile (FAL, single video upload in tab
Images and Videos, mp4/webm/ogv/mov/m4v); new bool field showdatapath
(toggle at end of General tab, controls the "Datapath is now Vitec"
graphic in the frontend). ext_tables.sql, TCA, model property +
getter/setter, and both renderers updated accordingly.
Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
70 lines
2.7 KiB
PHP
70 lines
2.7 KiB
PHP
<?php
|
|
declare(strict_types=1);
|
|
|
|
defined('TYPO3') or die();
|
|
|
|
use B13\Container\Tca\ContainerConfiguration;
|
|
use B13\Container\Tca\Registry;
|
|
use TYPO3\CMS\Core\Utility\ExtensionManagementUtility;
|
|
use TYPO3\CMS\Core\Utility\GeneralUtility;
|
|
|
|
(static function (): void {
|
|
$l = 'LLL:EXT:vitec/Resources/Private/Language/locallang_containers.xlf:';
|
|
|
|
/** @var Registry $registry */
|
|
$registry = GeneralUtility::makeInstance(Registry::class);
|
|
|
|
$registry->configureContainer(
|
|
(new ContainerConfiguration(
|
|
'vitec_container',
|
|
$l . 'container.title',
|
|
$l . 'container.description',
|
|
[
|
|
[
|
|
['name' => $l . 'container.column', 'colPos' => 220],
|
|
],
|
|
]
|
|
))
|
|
->setIcon('EXT:vitec/Resources/Public/Icons/vitec-container.svg')
|
|
->setGroup('vitec')
|
|
->setSaveAndCloseInNewContentElementWizard(true)
|
|
);
|
|
|
|
$GLOBALS['TCA']['tt_content']['types']['vitec_container']['showitem'] =
|
|
'--palette--;;general,
|
|
header;LLL:EXT:vitec/Resources/Private/Language/locallang_containers.xlf:section.heading,
|
|
subheader;LLL:EXT:vitec/Resources/Private/Language/locallang_containers.xlf:section.subline,
|
|
tx_vitec_bg_variant,
|
|
pi_flexform;LLL:EXT:vitec/Resources/Private/Language/locallang_containers.xlf:container.flexform.label,
|
|
--div--;LLL:EXT:frontend/Resources/Private/Language/locallang_ttc.xlf:tabs.appearance,
|
|
--palette--;;frames,
|
|
--palette--;;appearanceLinks,
|
|
--div--;LLL:EXT:core/Resources/Private/Language/Form/locallang_tabs.xlf:language,
|
|
--palette--;;language,
|
|
--div--;LLL:EXT:core/Resources/Private/Language/Form/locallang_tabs.xlf:access,
|
|
--palette--;;hidden,
|
|
--palette--;;access';
|
|
|
|
// Bind the Container FlexForm to this CType.
|
|
// Core tt_content.pi_flexform uses ds_pointerField = 'list_type,CType'.
|
|
// The official helper registers the data structure under the key
|
|
// '*,vitec_container' (wildcard list_type + CType), which is the
|
|
// version-proof way to attach a FlexForm to a CType-based element.
|
|
ExtensionManagementUtility::addPiFlexFormValue(
|
|
'*',
|
|
'FILE:EXT:vitec/Configuration/FlexForms/Container.xml',
|
|
'vitec_container'
|
|
);
|
|
|
|
ExtensionManagementUtility::addPageTSConfig(<<<TSCONFIG
|
|
mod.wizards.newContentElement.wizardItems.vitec.elements.vitec_container {
|
|
iconIdentifier = vitec-container
|
|
title = LLL:EXT:vitec/Resources/Private/Language/locallang_containers.xlf:container.title
|
|
description = LLL:EXT:vitec/Resources/Private/Language/locallang_containers.xlf:container.description
|
|
tt_content_defValues {
|
|
CType = vitec_container
|
|
}
|
|
}
|
|
TSCONFIG);
|
|
})();
|