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
9840bdd3
Commit
9840bdd3
authored
May 28, 2014
by
Qiang Xue
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
minor format fix [skip ci]
parent
d1ab9f72
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
15 deletions
+11
-15
structure-applications.md
docs/guide/structure-applications.md
+11
-15
No files found.
docs/guide/structure-applications.md
View file @
9840bdd3
...
@@ -637,23 +637,19 @@ an application will undergo the following lifecycle:
...
@@ -637,23 +637,19 @@ an application will undergo the following lifecycle:
1.
The entry script loads the application configuration as an array.
1.
The entry script loads the application configuration as an array.
2.
The entry script creates a new instance of the application:
2.
The entry script creates a new instance of the application:
2.1 [[yii\base\Application::preInit()|preInit()]] is called, which configures some high priority
2.
1
[
[yii\base\Application::preInit()|preInit()
]
] is called, which configures some high priority
application properties, such as [[yii\base\Application::basePath|basePath]].
application properties, such as
[
[yii\base\Application::basePath|basePath
]
].
2.2 Register the [[yii\base\Application::errorHandler|error handler]].
2.
2 Register the
[
[yii\base\Application::errorHandler|error handler
]
].
2.3 Configure application properties.
2.
3 Configure application properties.
2.4 [[yii\base\Application::init()|init()]] is called which further calls
2.
4
[
[yii\base\Application::init()|init()
]
] is called which further calls
[[yii\base\Application::bootstrap()|bootstrap()]] to run bootstrap components.
[
[yii\base\Application::bootstrap()|bootstrap()
]
] to run bootstrap components.
3.
The entry script calls
[
[yii\base\Application::run()
]
] to run the application:
3.
The entry script calls
[
[yii\base\Application::run()
]
] to run the application:
3.1 Trigger the [[yii\base\Application::EVENT_BEFORE_REQUEST|EVENT_BEFORE_REQUEST]] event.
3.
1 Trigger the
[
[yii\base\Application::EVENT_BEFORE_REQUEST|EVENT_BEFORE_REQUEST
]
] event.
3.2 Handle the request:
3.
2 Handle the request: resolve the request into a
[
route
](
runtime-routing.md
)
and the associated parameters;
create the module, controller and action objects as specified by the route; and run the action.
3.2.1 Resolve the request into a [route](runtime-routing.md) and the associated parameters.
3.
3 Trigger the
[
[yii\base\Application::EVENT_AFTER_REQUEST|EVENT_AFTER_REQUEST
]
] event.
3.2.2 Create the module, controller and action objects as specified by the route.
3.
4 Send response to the end user.
3.2.3 Run the action.
3.3 Trigger the [[yii\base\Application::EVENT_AFTER_REQUEST|EVENT_AFTER_REQUEST]] event.
3.4 Send response to the end user.
4.
The entry script receives the exit status from the application and completes the request processing.
4.
The entry script receives the exit status from the application and completes the request processing.
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