@@ -122,27 +122,62 @@ A more complex example including database table with multilingual support is bel
122
122
123
123
#### Configuring the scan root
124
124
125
+ The root path can be an alias or a full path (e.g. ` @app ` or ` /webroot/site/ ` ).
126
+
125
127
The file scanner will scan the configured folders for translatable elements. The following two options
126
128
determine the scan root directory: ` root ` , and ` scanRootParentDirectory ` . These options are defaults to
127
- values that works with the Yii 2 advanced project template. If you are using basic template, you have to modify
129
+ values that works with the Yii 2 advanced project template. If you are using basic template, you have to modify
128
130
these settings.
129
131
130
- The ` root ` options tells which is the root folder for project scan. However if ` scanRootParentDirectory ` is set to ` true `
131
- (which is the default value), the scan will run on the parent directory. This is desired behavior on advanced template,
132
- because the ` @app ` is the root for the current app, which is a subfolder inside the project (so the entire root of the
133
- project is the parent directory of ` @app ` ).
132
+ The ` root ` options tells which is the root folder for project scan. It can contain a single directory (string),
133
+ or multiple directories (in an array).
134
+
135
+ The ` scanRootParentDirectory ` ** is used only** if a single root directory is specified in a string.
136
+
137
+ ** IMPORTANT: Changing these options could cause loss of translated items,
138
+ as optimize action removes the missing items.** So be sure to double check your configuration!
139
+
140
+ ** a)** Single root directory:
134
141
135
- For basic template the ` @app ` is also the root for the entire project. Because of this with the default value
136
- of ` scanRootParentDirectory ` , the scan runs outside the project folder. This is not desired behavior, and
142
+ It is possible to define one root directory as string in the ` root ` option. In this case the ` scanRootParentDirectory `
143
+ will be used when determining the actual directory to scan.
144
+
145
+ If ` scanRootParentDirectory ` is set to ` true ` (which is the default value), the scan will run on the parent directory.
146
+ This is desired behavior on advanced template, because the ` @app ` is the root for the current app, which is a subfolder
147
+ inside the project (so the entire root of the project is the parent directory of ` @app ` ).
148
+
149
+ For basic template the ` @app ` is also the root for the entire project. Because of this with the default value
150
+ of ` scanRootParentDirectory ` , the scan runs outside the project folder. This is not desired behavior, and
137
151
changing the value to ` false ` solves this.
138
152
139
- ** IMPORTANT: Changing the ` scanRootParentDirectory ` from ` true ` to ` false ` could cause loss of translated items,
140
- as optimize action removes the missing items.** Changing the root folder can cause also loss, so be sure to
141
- double check your configuration!
153
+ ** IMPORTANT: Changing the ` scanRootParentDirectory ` from ` true ` to ` false ` could cause loss of translated items,
154
+ as the root will be a different directory.**
155
+
156
+ For example:
157
+
158
+ | ` root ` value | ` scanRootParentDirectory ` value| Scanned directory |
159
+ | ---| ---| ---|
160
+ | ` /webroot/site/frontend ` | ` true ` | ` /webroot/site ` |
161
+ | ` /webroot/site/frontend ` | ` false ` | ` /webroot/site/frontend ` |
142
162
143
- Using of [ authManager ] ( http://www.yiiframework.com/doc-2.0/guide-security-authorization.html ) .
163
+ ** b) ** Multiple root directories:
144
164
145
- examples:
165
+ Multiple root directories can be defined in an array. In this case all items must point to the exact directory,
166
+ as ` scanRootParentDirectory ` ** will be omitted** .
167
+
168
+ For example:
169
+
170
+ ``` php
171
+ 'root' => [
172
+ '@frontend',
173
+ '@vendor',
174
+ '/some/external/folder',
175
+ ],
176
+ ```
177
+
178
+ #### Using of [ authManager] ( http://www.yiiframework.com/doc-2.0/guide-security-authorization.html )
179
+
180
+ Examples:
146
181
147
182
PhpManager:
148
183
``` php
@@ -164,7 +199,7 @@ DbManager:
164
199
],
165
200
```
166
201
167
- Front end translation:
202
+ #### Front end translation:
168
203
169
204
``` php
170
205
'bootstrap' => ['translatemanager'],
@@ -456,7 +491,9 @@ Use it with the Yii CLI
456
491
Known issues
457
492
-----------
458
493
459
- * Scanner is scanning parent root directory. [ #12 ] ( https://github.com/lajax/yii2-translate-manager/pull/12 )
494
+ * Scanner is scanning parent root directory [ #12 ] ( https://github.com/lajax/yii2-translate-manager/pull/12 ) .
495
+
496
+ You can overwrite this behavior with the ` scanRootParentDirectory ` option. (See Config section for details.)
460
497
* Frontend translation of strings in hidden tags corrupts HTML. [ #45 ] ( https://github.com/lajax/yii2-translate-manager/issues/45 )
461
498
462
499
Screenshots
0 commit comments