File tree 4 files changed +32
-2
lines changed
4 files changed +32
-2
lines changed Original file line number Diff line number Diff line change @@ -272,6 +272,11 @@ class Module extends \yii\base\Module {
272
272
*/
273
273
public $ defaultExportFormat = Response::FORMAT_JSON ;
274
274
275
+ /**
276
+ * @var string The default db connection
277
+ */
278
+ public $ connection = 'db ' ;
279
+
275
280
/**
276
281
* @inheritdoc
277
282
*/
@@ -303,6 +308,7 @@ public function checkAccess() {
303
308
*/
304
309
public function getLanguageItemsDirPath () {
305
310
return Yii::getAlias ($ this ->tmpDir ) . $ this ->subDir ;
306
- }
307
-
311
+ }
312
+
313
+
308
314
}
Original file line number Diff line number Diff line change @@ -50,6 +50,13 @@ class Language extends \yii\db\ActiveRecord {
50
50
self ::STATUS_BETA => 'Beta ' ,
51
51
];
52
52
53
+ /**
54
+ * @inheritdoc
55
+ */
56
+ public static function getDb () {
57
+ return Yii::$ app ->get (Yii::$ app ->getModule ('translatemanager ' )->connection );
58
+ }
59
+
53
60
/**
54
61
* @inheritdoc
55
62
*/
Original file line number Diff line number Diff line change @@ -27,6 +27,15 @@ class LanguageSource extends \yii\db\ActiveRecord
27
27
28
28
const INSERT_LANGUAGE_ITEMS_LIMIT = 10 ;
29
29
30
+ /**
31
+ * @inheritdoc
32
+ */
33
+ public static function getDb ()
34
+ {
35
+ $ dbMessageSources = Yii::getObjectVars (Yii::$ app ->i18n ->getMessageSource ('DbMessageSource ' ));
36
+ return $ dbMessageSources ['db ' ];
37
+ }
38
+
30
39
/**
31
40
* @inheritdoc
32
41
*/
Original file line number Diff line number Diff line change @@ -26,6 +26,14 @@ class LanguageTranslate extends \yii\db\ActiveRecord {
26
26
*/
27
27
public $ cnt ;
28
28
29
+ /**
30
+ * @inheritdoc
31
+ */
32
+ public static function getDb () {
33
+ $ dbMessageSources = Yii::getObjectVars (Yii::$ app ->i18n ->getMessageSource ('DbMessageSource ' ));
34
+ return $ dbMessageSources ['db ' ];
35
+ }
36
+
29
37
/**
30
38
* @inheritdoc
31
39
*/
You can’t perform that action at this time.
0 commit comments