-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathModule.php
51 lines (39 loc) · 1.16 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
<?php
namespace kouosl\theme;
use Yii;
/**
* Module [[Theme]]
* Yii2 theme module.
*/
class Module extends \yii\base\Module
{
//public $controllerNamespace = 'kouosl\theme\controllers\backend';
public function init()
{
parent::init();
$this->registerTranslations();
}
public function registerTranslations()
{
Yii::$app->i18n->translations['theme/*'] = [
'class' => 'yii\i18n\PhpMessageSource',
'sourceLanguage' => 'en-US',
'basePath' => '@kouosl/theme/messages',
'fileMap' => [
'theme/theme' => 'theme.php',
],
];
}
public static function t($category, $message, $params = [], $language = null)
{
Yii::$app->i18n->translations['theme/*'] = [
'class' => 'yii\i18n\PhpMessageSource',
'sourceLanguage' => 'en-US',
'basePath' => '@kouosl/theme/messages',
'fileMap' => [
'theme/theme' => 'theme.php',
],
];
return Yii::t('theme/' . $category, $message, $params, $language);
}
}