Created
October 4, 2017 14:15
-
-
Save Kleisli/8b26fd6d11a48222ed9a7fc19c6bf9cb to your computer and use it in GitHub Desktop.
TYPO3 v8 Change image cropping configurations only for tx_news articles
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
$GLOBALS['TCA']['tx_news_domain_model_news']['columns']['fal_media']['config']['overrideChildTca']['columns']['crop'] = [ | |
'config' => [ | |
'cropVariants' => [ | |
'default' => [ | |
'title' => 'Normal', | |
'allowedAspectRatios' => [ | |
'Preview' => [ | |
'title' => '~2:1', | |
'value' => 1.91 | |
], | |
'NaN' => [ | |
'title' => 'Frei', | |
'value' => 0.0 | |
], | |
], | |
], | |
'news_preview' => [ | |
'title' => 'News Preview', | |
'allowedAspectRatios' => [ | |
'Preview' => [ | |
'title' => '~2:1', | |
'value' => 1.91 | |
] | |
], | |
], | |
], | |
], | |
]; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment