Skip to content

Instantly share code, notes, and snippets.

@Kleisli
Created October 4, 2017 14:15
Show Gist options
  • Save Kleisli/8b26fd6d11a48222ed9a7fc19c6bf9cb to your computer and use it in GitHub Desktop.
Save Kleisli/8b26fd6d11a48222ed9a7fc19c6bf9cb to your computer and use it in GitHub Desktop.
TYPO3 v8 Change image cropping configurations only for tx_news articles
<?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