Commit c55512a1eb9eec1c2327320aed5a666c9a265f8a

Authored by Administrator
1 parent 01ebf78c

Initial commit

.gitignore 0 → 100644
  1 +# Created by .ignore support plugin (hsz.mobi)
  2 +### Yii template
  3 +vendor/*
  4 +composer.phar
  5 +uploads/*
  6 +
... ...
backend/components/croppers/GoldenGardenGiantCrop.php
... ... @@ -5,5 +5,8 @@ namespace backend\components\croppers;
5 5  
6 6 class GoldenGardenGiantCrop extends AbstractCrop
7 7 {
8   -
  8 + const WIDTH = 1359;
  9 + const HEIGHT = 1948;
  10 + const X = 867;
  11 + const Y = 1961;
9 12 }
10 13 \ No newline at end of file
... ...
backend/components/croppers/UkrSeedsFloraMiniCrop.php
... ... @@ -5,5 +5,8 @@ namespace backend\components\croppers;
5 5  
6 6 class UkrSeedsFloraMiniCrop extends AbstractCrop
7 7 {
8   -
  8 + const WIDTH = 299;
  9 + const HEIGHT = 502;
  10 + const X = 301;
  11 + const Y = 598;
9 12 }
10 13 \ No newline at end of file
... ...
backend/components/croppers/UkrSeedsFloraVegiesCrop.php
... ... @@ -5,5 +5,8 @@ namespace backend\components\croppers;
5 5  
6 6 class UkrSeedsFloraVegiesCrop extends AbstractCrop
7 7 {
8   -
  8 + const WIDTH = 341;
  9 + const HEIGHT = 638;
  10 + const X = 331;
  11 + const Y = 722;
9 12 }
10 13 \ No newline at end of file
... ...
backend/components/croppers/UkrSeedsNovikFlowersCrop.php
... ... @@ -5,5 +5,8 @@ namespace backend\components\croppers;
5 5  
6 6 class UkrSeedsNovikFlowersCrop extends AbstractCrop
7 7 {
8   -
  8 + const WIDTH = 1359;
  9 + const HEIGHT = 1948;
  10 + const X = 867;
  11 + const Y = 1961;
9 12 }
10 13 \ No newline at end of file
... ...
backend/components/croppers/UkrSeedsNovikGiantCrop.php
... ... @@ -5,5 +5,8 @@ namespace backend\components\croppers;
5 5  
6 6 class UkrSeedsNovikGiantCrop extends AbstractCrop
7 7 {
8   -
  8 + const WIDTH = 1473;
  9 + const HEIGHT = 1998;
  10 + const X = 767;
  11 + const Y = 1901;
9 12 }
10 13 \ No newline at end of file
... ...
backend/components/croppers/UkrSeedsNovikMiniCrop.php
... ... @@ -5,5 +5,8 @@ namespace backend\components\croppers;
5 5  
6 6 class UkrSeedsNovikMiniCrop extends AbstractCrop
7 7 {
8   -
  8 + const WIDTH = 1028;
  9 + const HEIGHT = 1469;
  10 + const X = 710;
  11 + const Y = 1390;
9 12 }
10 13 \ No newline at end of file
... ...
backend/components/croppers/UkrSeedsNovikVegiesCrop.php
... ... @@ -5,5 +5,8 @@ namespace backend\components\croppers;
5 5  
6 6 class UkrSeedsNovikVegiesCrop extends AbstractCrop
7 7 {
8   -
  8 + const WIDTH = 1182;
  9 + const HEIGHT = 1825;
  10 + const X = 827;
  11 + const Y = 1718;
9 12 }
10 13 \ No newline at end of file
... ...
backend/components/croppers/UkrSeedsTekVegiesCrop.php
... ... @@ -5,5 +5,8 @@ namespace backend\components\croppers;
5 5  
6 6 class UkrSeedsTekVegiesCrop extends AbstractCrop
7 7 {
8   -
  8 + const WIDTH = 466;
  9 + const HEIGHT = 870;
  10 + const X = 32;
  11 + const Y = 891;
9 12 }
10 13 \ No newline at end of file
... ...