Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@Bjoelin
Created September 7, 2016 14:22
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Bjoelin/6c1dcb1296c16dd335172882e2f34d65 to your computer and use it in GitHub Desktop.
Save Bjoelin/6c1dcb1296c16dd335172882e2f34d65 to your computer and use it in GitHub Desktop.
Overrides aspect ratios for TYPO3 Image crop overlay modal
<?php
if (!defined('TYPO3_MODE')) {
die('Access denied.');
}
/*
Defaults
'ratios' => array(
'1.7777777777777777' => 'LLL:EXT:lang/locallang_wizards.xlf:imwizard.ratio.16_9',
'1.3333333333333333' => 'LLL:EXT:lang/locallang_wizards.xlf:imwizard.ratio.4_3',
'1' => 'LLL:EXT:lang/locallang_wizards.xlf:imwizard.ratio.1_1',
'NaN' => 'LLL:EXT:lang/locallang_wizards.xlf:imwizard.ratio.free',
),
*/
$GLOBALS['TCA']['sys_file_reference']['columns']['crop']['config'] = array(
'type' => 'imageManipulation',
'ratios' => array(
'1.7777777777777777' => 'LLL:EXT:lang/locallang_wizards.xlf:imwizard.ratio.16_9',
),
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment