48 lines
		
	
	
		
			1.8 KiB
		
	
	
	
		
			PHP
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			48 lines
		
	
	
		
			1.8 KiB
		
	
	
	
		
			PHP
		
	
	
		
			Executable File
		
	
	
	
	
<?php
 | 
						|
return [
 | 
						|
    'aliases' => [
 | 
						|
        '@bower' => '@vendor/bower-asset',
 | 
						|
        '@npm'   => '@vendor/npm-asset',
 | 
						|
    ],
 | 
						|
    'vendorPath' => dirname(dirname(__DIR__)) . '/vendor',
 | 
						|
    'components' => [
 | 
						|
        'cache' => [
 | 
						|
            'class' => 'yii\caching\FileCache',
 | 
						|
        ],
 | 
						|
        'authManager' => [
 | 
						|
            'class' => 'yii\rbac\DbManager',
 | 
						|
//            'itemFile' => '@common/components/rbac/items.php',
 | 
						|
//            'assignmentFile' => '@common/components/rbac/assignments.php',
 | 
						|
//            'ruleFile' => '@common/components/rbac/rules.php'
 | 
						|
        ],
 | 
						|
    ],
 | 
						|
    'controllerMap' => [
 | 
						|
        'elfinder' => [
 | 
						|
            'class' => 'mihaildev\elfinder\Controller',
 | 
						|
            'access' => ['@', '?'],
 | 
						|
            'disabledCommands' => ['netmount'],
 | 
						|
            'roots' => [
 | 
						|
                [
 | 
						|
                    'baseUrl' => '',
 | 
						|
                    'basePath' => '@frontend/web',
 | 
						|
                    'path' => 'media/upload',
 | 
						|
                    'name' => 'Изображения',
 | 
						|
                ],
 | 
						|
                [
 | 
						|
                    'basePath' => '@templates',
 | 
						|
                    'name' => 'Шаблоны документов' //перевод Yii::t($category, $message)
 | 
						|
                ],
 | 
						|
            ],
 | 
						|
            'watermark' => [
 | 
						|
                'source' => __DIR__ . '/logo.png', // Path to Water mark image
 | 
						|
                'marginRight' => 5, // Margin right pixel
 | 
						|
                'marginBottom' => 5, // Margin bottom pixel
 | 
						|
                'quality' => 95, // JPEG image save quality
 | 
						|
                'transparency' => 70, // Water mark image transparency ( other than PNG )
 | 
						|
                'targetType' => IMG_GIF | IMG_JPG | IMG_PNG | IMG_WBMP, // Target image formats ( bit-field )
 | 
						|
                'targetMinPixel' => 200 // Target image minimum pixel size
 | 
						|
            ]
 | 
						|
        ]
 | 
						|
    ],
 | 
						|
];
 |