-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathModule.php
executable file
·47 lines (41 loc) · 1.23 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
<?php
namespace kouosl\content;
use Yii;
use yii\filters\auth\CompositeAuth;
use yii\filters\auth\HttpBasicAuth;
use yii\filters\auth\HttpBearerAuth;
use yii\filters\auth\QueryParamAuth;
use yii\web\HttpException;
class Module extends \kouosl\base\Module{
public $controllerNamespace = '';
public function init(){
parent::init();
$this->registerTranslations();
}
public function registerTranslations(){
Yii::$app->i18n->translations['site/*'] = [
'class' => 'yii\i18n\PhpMessageSource',
'sourceLanguage' => 'en-US',
'basePath' => '@kouosl/content/messages',
'fileMap' => [
'content/content' => 'content.php',
],
];
}
public static function t($category, $message, $params = [], $language = null){
return Yii::t('content/'. $category, $message, $params, $language);
}
public static function initRules(){
return $rules = [
[
'class' => 'yii\rest\UrlRule',
'controller' => [
'content/contents',
],
'tokens' => [
'{id}' => '<id:\\w+>'
],
],
] ;
}
}