main.php 9.01 KB
<?php
    return [
        'language'      => 'ru',
        'vendorPath' => dirname(dirname(__DIR__)) . '/vendor',
        'components' => [
            'assetManager' => [
                'bundles' => [
                    'yii\web\JqueryAsset' =>[
                        'jsOptions' =>  ['position' => \yii\web\View::POS_HEAD]
                    ]
                ],
            ],
            
            'sms' => [
                'class' => 'common\components\SmsSender',
            ],
            
            'cache' => [
                'class' => 'yii\caching\FileCache',
            ],
            
            'i18n' => [
                'translations' => [
                    '*' => [
                        'class' => 'yii\i18n\PhpMessageSource',
                        'basePath' => '@common/translation',
                        'fileMap' => [
                            'app' => 'app.php',
                            'app/error' => 'error.php',
                        ],
                    ],
                    'app' => [
                        'class' => 'yii\i18n\PhpMessageSource',
                        'basePath' => '@common/translation',
                        'fileMap' => [
                            'app' => 'app.php',
                            'app/error' => 'error.php',
                        ],
                    ],
                    'artbox-comment' => [
                        'class' => 'yii\i18n\PhpMessageSource',
                        'basePath' => '@common/modules/comment/messages',
                    ],
                ],
            ],
            'artboximage' => [
                'class' => 'common\components\artboximage\ArtboxImage',
                'driver' => 'GD',
                'rootPath' => Yii::getAlias('@storage'),
                'rootUrl' => Yii::getAlias('/storage'),
                'presets' => [
                    'product' => [
                        'resize' => [
                            'width' => 300,
                            'height' => 300,
                            'master' => null
                        ],
                    ],
                    'product_variant' => [
                        'resize' => [
                            'width' => 38,
                            'height' => 38,
                            'master' => null
                        ],
                    ],
                    'product_trumb2' => [
                        'resize' => [
                            'width' => 88,
                            'height' => 88,
                            'master' => null
                        ],
                    ],
                    'product_basket' => [
                        'resize' => [
                            'width' => 100,
                            'height' => 200,
                            'master' => null
                        ],
                    ],
                    'product_view' => [
                        'resize' => [
                            'width' => 392,
                            'height' => 365,
                            'master' => null
                        ],
                    ],
                    'iam' => [
                        'resize' => [
                            'width' => 120,
                            'height' => 240,
                            'master' => null
                        ],
                    ],
                    'slider' => [
                        'resize' => [
                            'width' => 720,
                            'height' => 340,
                            'master' => null
                        ],
                    ],
                    'brandlist' => [
                        'resize' => [
                            'width' => 128,
                            'height' => 128,
                            'master' => null
                        ],
                    ],
                    'eventlist' => [
                        'resize' => [
                            'width' => 180,
                            'height' => 125,
                            'master' => null
                        ],
                    ],
                    'brand_item' => [
                        'resize' => [
                            'width' => 150,
                            'height' => 150,
                            'master' => null
                        ],
                        'crop' => [
                            'width' => 150,
                            'height' => 150,
                            'master' => null
                        ],
                    ],
                    'mainmenu' => [
                        'resize' => [
                            'width' => 160,
                            'height' => 170,
                            'master' => null
                        ],
                    ],
                    'list' => [
                        'resize' => [
                            'width' => 134,
                            'height' => 200,
                            'master' => null
                        ],
                    ],
                    'large' => [
                        'resize' => [
                            'width' => 600,
                            'height' => 600,
                            'master' => null
                        ],
                    ],
                    'admin_thumb' => [
                        'resize' => [
                            'width' => 256,
                        ],
                    ],
                    'option_menu' => [
                        'resize' => [
                            'width' => 100,
                            'height' => 110,
                        ],
                    ],
                    'article_list' => [
                        'resize' => [
                            'width' => 555,
                            'height' => 299,
                        ],
                    ],
                    'project_list' => [
                        'resize' => [
                            'width' => 165,
                            'height' => 100,
                        ],
                    ],
                    'category_thumb' => [
                        'resize' => [
                            'width' => 227,
                            'height' => 180,
                        ],
                    ],
                    'brand_thumb' => [
                        'resize' => [
                            'width' => 455,
                            'height' => 268,
                        ],
                    ],
                    'coll' => [
                        'resize' => [
                            'width' => 120,
                            'height' => 50,
                        ],
                    ],
                    'collections_home' => [
                        'resize' => [
                            'width' => 304,
                            'height' => 175,
                        ],
                    ],
                    'article_thumb' => [
                        'resize' => [
                            'width' => 450,
                            'height' => 300,
                        ],
                    ],
                    'blog_thumb' => [
                        'resize' => [
                            'width' => 595,
                            'height' => 266,
                        ],
                    ],
                    'product_main' => [
                        'resize' => [
                            'width' => 630,
                            'height' => 389,
                        ],
                    ],
                    'product_variant_main' => [
                        'resize' => [
                            'width' => 139,
                            'height' => 124,
                        ],
                    ],
                    'collections_thumb' => [
                        'resize' => [
                            'width' => 304,
                        ],
                    ],
                    'main_blog_one' => [
                        'resize' => [
                            'width' => 305,
                            'height' => 221,
                        ],
                    ],
                    'main_event_one' => [
                        'resize' => [
                            'width' => 308,
                            'height' => 221,
                        ],
                    ],
                    'product_list_item' => [
                        'resize' => [
                            'width' => 308,
                            'height' => 221,
                        ],
                    ],
                ]
            ],
            'basket' => [
                'class' => 'common\models\Basket',
            ],
        ],
        'modules' => [
            'file' => [
                'class' => 'common\modules\file\Module',
            ],
            'artbox-comment' => [
                'class' => 'common\modules\comment\Module',
            ],
        ],
    ];