Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
Y
yii2
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
PSDI Army
yii2
Commits
ec9d33db
Commit
ec9d33db
authored
Nov 20, 2014
by
Carsten Brandt
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fixed broken markdown
fixes #6084
parent
eb98df2e
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
5 additions
and
5 deletions
+5
-5
structure-applications.md
docs/guide-ja/structure-applications.md
+1
-1
structure-applications.md
docs/guide-pt-BR/structure-applications.md
+1
-1
structure-applications.md
docs/guide-ru/structure-applications.md
+1
-1
structure-applications.md
docs/guide-zh-CN/structure-applications.md
+1
-1
structure-applications.md
docs/guide/structure-applications.md
+1
-1
No files found.
docs/guide-ja/structure-applications.md
View file @
ec9d33db
...
...
@@ -133,7 +133,7 @@ $config = require(__DIR__ . '/../config/web.php');
> Info|情報: モジュール ID と同じ ID のアプリケーションコンポーネントがある場合は、ブートストラップの過程ではアプリケーションコンポーネントが使われます。
代りにモジュールを使いたいときは、次のように、無名関数を使って指定することが出来ます:
>```php
>
```php
[
function () {
return Yii::$app->getModule('user');
...
...
docs/guide-pt-BR/structure-applications.md
View file @
ec9d33db
...
...
@@ -153,7 +153,7 @@ Por exemplo,
o componente será usado durante o processo de inicialização. Se você quiser
usar o módulo ao invés dele, você pode especificá-lo usando uma função anônima
conforme a seguir:
>```php
>
```php
[
function () {
return Yii::$app->getModule('user');
...
...
docs/guide-ru/structure-applications.md
View file @
ec9d33db
...
...
@@ -135,7 +135,7 @@ ID в качестве элемента данного свойства.
> Info: Если ID модуля такой же, как идентификатор компонента приложения, то в процессе [начальной загрузки](runtime-bootstrapping.md)
> будет использован компонент приложения. Если Вы вместо этого хотите использовать модуль, то можете указать его при
> помощи анонимной функции похожей на эту:
>```php
>
```php
[
function () {
return Yii::$app->getModule('user');
...
...
docs/guide-zh-CN/structure-applications.md
View file @
ec9d33db
...
...
@@ -118,7 +118,7 @@ $config = require(__DIR__ . '/../config/web.php');
```
> 补充: 如果模块ID和应用组件ID同名,优先使用应用组件ID,如果你想用模块ID,可以使用如下无名称函数返回模块ID。
>```php
>
```php
[
function () {
return Yii::$app->getModule('user');
...
...
docs/guide/structure-applications.md
View file @
ec9d33db
...
...
@@ -140,7 +140,7 @@ For example,
> Info: If a module ID is the same as an application component ID, the application component will be used during
the bootstrapping process. If you want to use the module instead, you may specify it using an anonymous function
like the following:
>```php
>
```php
[
function () {
return Yii::$app->getModule('user');
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment