| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114 |
- <?php
- declare(strict_types=1);
- namespace CYBOB\BaggerSitePackage\Utility;
- /**
- * @package \CYBOB\BaggerSitePackage\Utility
- */
- class TcaUtility
- {
- /**
- * Returns a default crop editor configuration.
- *
- * @return array[]
- */
- public static function getDefaultCropConfiguration(): array
- {
- return [
- 'desktop' => [
- 'title' => 'Desktop (min-width: 1200px)',
- 'cropArea' => [
- 'x' => 0.0,
- 'y' => 0.0,
- 'width' => 1.0,
- 'height' => 1.0
- ],
- 'allowedAspectRatios' => [
- '1:1' => [
- 'title' => '1:1',
- 'value' => 1.0
- ],
- '4:3' => [
- 'title' => '4:3',
- 'value' => 4 / 3
- ],
- '6:7' => [
- 'title' => '6:7',
- 'value' => 6 / 6.9345372460
- ],
- '16:9' => [
- 'title' => '16:9',
- 'value' => 16 / 9
- ],
- 'NaN' => [
- 'title' => 'Free',
- 'value' => 0.0
- ]
- ]
- ],
- 'tablet' => [
- 'title' => 'Tablet (max-width: 1200px)',
- 'cropArea' => [
- 'x' => 0.0,
- 'y' => 0.0,
- 'width' => 1.0,
- 'height' => 1.0
- ],
- 'allowedAspectRatios' => [
- '1:1' => [
- 'title' => '1:1',
- 'value' => 1.0
- ],
- '4:3' => [
- 'title' => '4:3',
- 'value' => 4 / 3
- ],
- '6:7' => [
- 'title' => '6:7',
- 'value' => 6 / 6.9345372460
- ],
- '16:9' => [
- 'title' => '16:9',
- 'value' => 16 / 9
- ],
- 'NaN' => [
- 'title' => 'Free',
- 'value' => 0.0
- ]
- ]
- ],
- 'mobile' => [
- 'title' => 'Mobile (max-width: 750px)',
- 'cropArea' => [
- 'x' => 0.0,
- 'y' => 0.0,
- 'width' => 1.0,
- 'height' => 1.0
- ],
- 'allowedAspectRatios' => [
- '1:1' => [
- 'title' => '1:1',
- 'value' => 1.0
- ],
- '4:3' => [
- 'title' => '4:3',
- 'value' => 4 / 3
- ],
- '6:7' => [
- 'title' => '6:7',
- 'value' => 6 / 6.9345372460
- ],
- '16:9' => [
- 'title' => '16:9',
- 'value' => 16 / 9
- ],
- 'NaN' => [
- 'title' => 'Free',
- 'value' => 0.0
- ]
- ]
- ]
- ];
- }
- }
|