Files
lena-schilling-website/packages/base/Configuration/TCA/Overrides/tt_content.php
Dominik Polakovics 52e962ae83
All checks were successful
Build / build (push) Successful in 2m32s
Build / deploy-stage (push) Successful in 3m0s
Build / switch-stage (push) Successful in 2m8s
feat: add a textimage element, add news design, add a footer
2024-12-13 01:07:46 +01:00

13 lines
419 B
PHP

<?php
defined('TYPO3') or die();
// Force imageorient to only have items 25 and 26
$GLOBALS['TCA']['tt_content']['columns']['imageorient']['config'] = [
'type' => 'select',
'renderType' => 'selectSingle',
'items' => [
['LLL:EXT:base/Resources/Private/Language/locallang_db.xlf:imageorient.25', 25],
['LLL:EXT:base/Resources/Private/Language/locallang_db.xlf:imageorient.26', 26],
],
];