Files
Dominik Polakovics 7cc28d1e4e
Some checks failed
Build / build (push) Successful in 3m58s
Build / deploy-production (push) Failing after 2m9s
Build / deploy-stage (push) Successful in 3m8s
Build / switch-stage (push) Successful in 1m58s
Release / switch-production (push) Successful in 2m47s
fix: default imagepos
2024-12-20 21:11:58 +01:00

14 lines
440 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],
],
'default' => 25,
];