forked from rdeanar/yii2-file-processor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathModule.php
84 lines (73 loc) · 1.92 KB
/
Module.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
<?php
/**
* @link http://www.yiiframework.com/
* @copyright Copyright (c) 2008 Yii Software LLC
* @license http://www.yiiframework.com/license/
*/
namespace deanar\fileProcessor;
use Yii;
use yii\helpers\ArrayHelper;
use yii\web\ForbiddenHttpException;
class Module extends \yii\base\Module
{
public $debug = false;
public $image_driver;
public $variations_config = [];
public $upload_dir = 'uploads';
public $root_path = '@webroot';
public $root_url = null;
public $default_quality = 95;
public $default_resize_mod = 'inset';
public $unlink_files = true;
/**
* @inheritdoc
*/
public $controllerNamespace = 'deanar\fileProcessor\controllers';
/**
* @inheritdoc
*/
public function init()
{
$default = require(__DIR__ . '/variations_default.php');
$this->variations_config = ArrayHelper::merge($this->variations_config, $default);
$this->registerTranslations();
}
/**
* @inheritdoc
*/
public function beforeAction($action)
{
if (!parent::beforeAction($action)) {
return false;
}
return true;
}
/**
* Register widget translations.
*/
public function registerTranslations()
{
Yii::$app->i18n->translations['deanar/fileProcessor*'] = [
'class' => 'yii\i18n\PhpMessageSource',
// 'sourceLanguage' => 'en-US',
'basePath' => '@deanar/fileProcessor/messages',
'fileMap' => [
'deanar/fileProcessor' => 'fp.php',
],
'forceTranslation' => true
];
}
/**
* Translate shortcut
*
* @param $message
* @param array $params
* @param null $language
*
* @return string
*/
public static function t($message, $params = [], $language = null)
{
return \Yii::t('deanar/fileProcessor', $message, $params, $language);
}
}