@@ -81,7 +81,7 @@ |
||
81 | 81 | 'attribute' => 'description', |
82 | 82 | 'label' => Yii::t('yuncms', 'Role Description'), |
83 | 83 | ], |
84 | - ['class' => 'yuncms\grid\ActionColumn',], |
|
84 | + ['class' => 'yuncms\grid\ActionColumn', ], |
|
85 | 85 | ], |
86 | 86 | ]) |
87 | 87 | ?> |
@@ -73,10 +73,10 @@ discard block |
||
73 | 73 | $model = new UserBizRule(null); |
74 | 74 | if ($model->load(Yii::$app->request->post()) && $model->save()) { |
75 | 75 | UserRBACHelper::invalidate(); |
76 | - Yii::$app->getSession()->setFlash('success', Yii::t('yuncms','Create success.')); |
|
76 | + Yii::$app->getSession()->setFlash('success', Yii::t('yuncms', 'Create success.')); |
|
77 | 77 | return $this->redirect(['view', 'id' => $model->name]); |
78 | 78 | } else { |
79 | - return $this->render('create', ['model' => $model,]); |
|
79 | + return $this->render('create', ['model' => $model, ]); |
|
80 | 80 | } |
81 | 81 | } |
82 | 82 | |
@@ -93,11 +93,11 @@ discard block |
||
93 | 93 | $model = $this->findModel($id); |
94 | 94 | if ($model->load(Yii::$app->request->post()) && $model->save()) { |
95 | 95 | UserRBACHelper::invalidate(); |
96 | - Yii::$app->getSession()->setFlash('success', Yii::t('yuncms','Update success.')); |
|
96 | + Yii::$app->getSession()->setFlash('success', Yii::t('yuncms', 'Update success.')); |
|
97 | 97 | return $this->redirect(['view', 'id' => $model->name]); |
98 | 98 | } |
99 | 99 | |
100 | - return $this->render('update', ['model' => $model,]); |
|
100 | + return $this->render('update', ['model' => $model, ]); |
|
101 | 101 | } |
102 | 102 | |
103 | 103 | /** |
@@ -113,7 +113,7 @@ discard block |
||
113 | 113 | $model = $this->findModel($id); |
114 | 114 | Yii::$app->authManager->remove($model->item); |
115 | 115 | UserRBACHelper::invalidate(); |
116 | - Yii::$app->getSession()->setFlash('success', Yii::t('yuncms','Delete success.')); |
|
116 | + Yii::$app->getSession()->setFlash('success', Yii::t('yuncms', 'Delete success.')); |
|
117 | 117 | return $this->redirect(['index']); |
118 | 118 | } |
119 | 119 |
@@ -74,7 +74,7 @@ discard block |
||
74 | 74 | // ], |
75 | 75 | [ |
76 | 76 | 'attribute' => 'registration_ip', |
77 | - 'value' => function ($model) { |
|
77 | + 'value' => function($model) { |
|
78 | 78 | return $model->registration_ip == null |
79 | 79 | ? '<span class="not-set">' . Yii::t('yii', '(not set)') . '</span>' |
80 | 80 | : $model->registration_ip; |
@@ -96,7 +96,7 @@ discard block |
||
96 | 96 | ], |
97 | 97 | [ |
98 | 98 | 'header' => Yii::t('yuncms', 'Confirmation'), |
99 | - 'value' => function ($model) { |
|
99 | + 'value' => function($model) { |
|
100 | 100 | if ($model->isEmailConfirmed) { |
101 | 101 | return '<div class="text-center"><span class="text-success">' . Yii::t('yuncms', 'Confirmed') . '</span></div>'; |
102 | 102 | } else { |
@@ -112,7 +112,7 @@ discard block |
||
112 | 112 | ], |
113 | 113 | [ |
114 | 114 | 'header' => Yii::t('yuncms', 'Block status'), |
115 | - 'value' => function ($model) { |
|
115 | + 'value' => function($model) { |
|
116 | 116 | if ($model->isBlocked) { |
117 | 117 | return Html::a(Yii::t('yuncms', 'Unblock'), ['block', 'id' => $model->id], [ |
118 | 118 | 'class' => 'btn btn-xs btn-success btn-block', |
@@ -132,7 +132,7 @@ discard block |
||
132 | 132 | [ |
133 | 133 | 'class' => 'yuncms\grid\ActionColumn', |
134 | 134 | 'template' => '{assignment} {view} {update} {delete}', |
135 | - 'buttons' => ['assignment' => function ($url, $model, $key) { |
|
135 | + 'buttons' => ['assignment' => function($url, $model, $key) { |
|
136 | 136 | return Html::a('<span class="glyphicon glyphicon-dashboard"></span>', |
137 | 137 | Url::toRoute(['user-assignment/view', 'id' => $model->id]), [ |
138 | 138 | 'title' => Yii::t('yuncms', 'Assignment'), |
@@ -7,7 +7,7 @@ discard block |
||
7 | 7 | ], |
8 | 8 | 'components' => [ |
9 | 9 | 'cache' => [ |
10 | - 'keyPrefix' => 'web', //前缀 |
|
10 | + 'keyPrefix' => 'web', //前缀 |
|
11 | 11 | ], |
12 | 12 | 'authManager' => [ |
13 | 13 | 'class' => yuncms\rbac\DbManager::class, |
@@ -29,13 +29,13 @@ discard block |
||
29 | 29 | 'secureProtocolHeaders' => [ |
30 | 30 | 'X-Forwarded-Proto' => ['https'], // Common |
31 | 31 | 'Front-End-Https' => ['on'], // Microsoft |
32 | - 'X-Client-Scheme' => ['https'],// Aliyun CDN |
|
32 | + 'X-Client-Scheme' => ['https'], // Aliyun CDN |
|
33 | 33 | 'X-Client-Proto' => ['https'], |
34 | 34 | ], |
35 | 35 | 'ipHeaders' => [ |
36 | - 'X-Forwarded-For',// Common |
|
36 | + 'X-Forwarded-For', // Common |
|
37 | 37 | 'X-Cluster-Client-IP', |
38 | - 'ALI-CDN-REAL-IP',// Aliyun CDN |
|
38 | + 'ALI-CDN-REAL-IP', // Aliyun CDN |
|
39 | 39 | 'Client-IP', |
40 | 40 | 'X-Forwarded', |
41 | 41 | 'Forwarded-For', |
@@ -42,7 +42,7 @@ |
||
42 | 42 | { |
43 | 43 | /** @var ActiveRecord $class */ |
44 | 44 | $class = $this->modelClass; |
45 | - $class::create($this->attributes,$this->runValidation); |
|
45 | + $class::create($this->attributes, $this->runValidation); |
|
46 | 46 | } |
47 | 47 | |
48 | 48 | /** |
@@ -42,7 +42,7 @@ |
||
42 | 42 | { |
43 | 43 | /** @var ActiveRecord $class */ |
44 | 44 | $class = $this->modelClass; |
45 | - $class::create($this->attributes,$this->runValidation); |
|
45 | + $class::create($this->attributes, $this->runValidation); |
|
46 | 46 | } |
47 | 47 | |
48 | 48 | /** |
@@ -40,30 +40,30 @@ |
||
40 | 40 | public function events() |
41 | 41 | { |
42 | 42 | return [ |
43 | - ActiveRecord::EVENT_INIT => function () { |
|
43 | + ActiveRecord::EVENT_INIT => function() { |
|
44 | 44 | $this->initialization(); |
45 | 45 | }, |
46 | - ActiveRecord::EVENT_AFTER_FIND => function () { |
|
46 | + ActiveRecord::EVENT_AFTER_FIND => function() { |
|
47 | 47 | $this->decode(); |
48 | 48 | }, |
49 | - ActiveRecord::EVENT_BEFORE_INSERT => function () { |
|
49 | + ActiveRecord::EVENT_BEFORE_INSERT => function() { |
|
50 | 50 | $this->encode(); |
51 | 51 | }, |
52 | - ActiveRecord::EVENT_BEFORE_UPDATE => function () { |
|
52 | + ActiveRecord::EVENT_BEFORE_UPDATE => function() { |
|
53 | 53 | $this->encode(); |
54 | 54 | }, |
55 | - ActiveRecord::EVENT_AFTER_INSERT => function () { |
|
55 | + ActiveRecord::EVENT_AFTER_INSERT => function() { |
|
56 | 56 | $this->decode(); |
57 | 57 | }, |
58 | - ActiveRecord::EVENT_AFTER_UPDATE => function () { |
|
58 | + ActiveRecord::EVENT_AFTER_UPDATE => function() { |
|
59 | 59 | $this->decode(); |
60 | 60 | }, |
61 | - ActiveRecord::EVENT_BEFORE_VALIDATE => function () { |
|
61 | + ActiveRecord::EVENT_BEFORE_VALIDATE => function() { |
|
62 | 62 | if ($this->encodeBeforeValidation) { |
63 | 63 | $this->encodeValidate(); |
64 | 64 | } |
65 | 65 | }, |
66 | - ActiveRecord::EVENT_AFTER_VALIDATE => function () { |
|
66 | + ActiveRecord::EVENT_AFTER_VALIDATE => function() { |
|
67 | 67 | if ($this->encodeBeforeValidation) { |
68 | 68 | $this->decode(); |
69 | 69 | } |
@@ -81,7 +81,7 @@ |
||
81 | 81 | 'attribute' => 'description', |
82 | 82 | 'label' => Yii::t('yuncms', 'Role Description'), |
83 | 83 | ], |
84 | - ['class' => 'yuncms\grid\ActionColumn',], |
|
84 | + ['class' => 'yuncms\grid\ActionColumn', ], |
|
85 | 85 | ], |
86 | 86 | ]) |
87 | 87 | ?> |
@@ -54,7 +54,7 @@ discard block |
||
54 | 54 | 'email:email', |
55 | 55 | [ |
56 | 56 | 'attribute' => 'status', |
57 | - 'value' => function ($model) { |
|
57 | + 'value' => function($model) { |
|
58 | 58 | return $model->status == Admin::STATUS_ACTIVE ? Yii::t('yuncms', 'Active') : Yii::t('yuncms', 'Disable'); |
59 | 59 | }, |
60 | 60 | 'label' => Yii::t('yuncms', 'Status'), |
@@ -66,7 +66,7 @@ discard block |
||
66 | 66 | 'class' => 'yuncms\grid\ActionColumn', |
67 | 67 | 'header' => Yii::t('yuncms', 'Operation'), |
68 | 68 | 'template' => '{assignment} {view} {update} {delete}', |
69 | - 'buttons' => ['assignment' => function ($url, $model, $key) { |
|
69 | + 'buttons' => ['assignment' => function($url, $model, $key) { |
|
70 | 70 | return Html::a('<span class="glyphicon glyphicon-dashboard"></span>', |
71 | 71 | Url::toRoute(['assignment/view', 'id' => $model->id]), [ |
72 | 72 | 'title' => Yii::t('yuncms', 'Assignment'), |