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
7d31cba3
Commit
7d31cba3
authored
Apr 29, 2014
by
Qiang Xue
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Finished event guide. [skip ci]
parent
d9546187
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
70 additions
and
18 deletions
+70
-18
README.md
docs/guide/README.md
+2
-2
basic-events.md
docs/guide/basic-events.md
+68
-15
Event.php
framework/base/Event.php
+0
-1
No files found.
docs/guide/README.md
View file @
7d31cba3
...
...
@@ -30,9 +30,9 @@ Basic Concepts
*
[
Properties
](
basic-properties.md
)
*
[
Events
](
basic-events.md
)
*
[
Behaviors
](
basic-behaviors.md
)
*
[
Object
Configurations
](
basic-configs.md
)
*
[
Configurations
](
basic-configs.md
)
*
[
Class Autoloading
](
basic-autoloading.md
)
*
[
Path
Aliases
](
basic-alias.md
)
*
[
Aliases
](
basic-alias.md
)
*
**TBD**
[
Extensions
](
basic-extensions.md
)
*
[
Service Locator
](
basic-service-locator.md
)
*
[
Dependency Injection Container
](
basic-di-container.md
)
...
...
docs/guide/basic-events.md
View file @
7d31cba3
...
...
@@ -189,35 +189,88 @@ $foo->off(Foo::EVENT_HELLO);
```
Global Event
s
-------------
Class-Level Event Handler
s
-------------
-------------
You can use "global" events instead of per-component ones. A global event can take place on any component type.
In the above sections, we have described how to attach a handler to an event at
*instance level*
.
Sometimes, you may want to respond to an event triggered by EVERY instance of a class instead of
a specific instance. Instead of attaching an event handler to every instance, you may attach the handler
at
*class level*
by calling the static method
[
[yii\base\Event::on()
]
].
In order to attach a handler to a global event, call the
`on`
method on the application instance:
For example, an
[
Active Record
](
db-active-record.md
)
object will trigger a
[
[yii\base\ActiveRecord::EVENT_AFTER_INSERT
]
]
event whenever it inserts a new record into the database. In order to track insertions done by EVERY
[
Active Record
](
db-active-record.md
)
object, you may write the following code:
```
php
Yii
::
$app
->
on
(
$eventName
,
$handler
);
use
Yii
;
use
yii\base\Event
;
use
yii\db\ActiveRecord
;
Event
::
on
(
ActiveRecord
::
className
(),
ActiveRecord
::
EVENT_AFTER_INSERT
,
function
(
$event
)
{
Yii
::
trace
(
get_class
(
$event
->
sender
)
.
' is inserted'
);
});
```
Global events are triggered on the application instance instead
of a specific component:
The event handler will get invoked whenever an instance of
[
[yii\base\ActiveRecord|ActiveRecord
]
] or its child class triggers
the
[
[yii\base\ActiveRecord::EVENT_AFTER_INSERT|EVENT_AFTER_INSERT
]
] event. In the handler, you can get the object
that triggers the event through
`$event->sender`
.
When an object triggers an event, it will first call instance-level handlers, followed by class-level handlers.
You may trigger an
*class-level*
event by calling the static method
[
[yii\base\Event::trigger()
]
]. A class-level
event is not associated with a particular object. As a result, it will cause the invocation of class-level event
handlers only. For example,
```
php
Yii
::
$app
->
trigger
(
$eventName
);
use
yii\base\Event
;
Event
::
on
(
Foo
::
className
(),
Foo
::
EVENT_HELLO
,
function
(
$event
)
{
echo
$event
->
sender
;
// displays "app\models\Foo"
});
Event
::
trigger
(
Foo
::
className
(),
Foo
::
EVENT_HELLO
);
```
Note that in this case,
`$event->sender`
refers to the name of the class triggering the event instead of an object instance.
Class Events
------------
> Note: Because a class-level handler will respond to an event triggered by any instance of that class or its child
class, you should use it carefully, especially if the class is a low-level base class, such as
[
[yii\base\Object
]
].
It is possible to attach event handlers to all instances of a class instead of individual instances. To do so, use
the static
`Event::on`
method:
To detach a class-level event handler, call
[
[yii\base\Event::off()
]
]. For example,
```
php
Event
::
on
(
ActiveRecord
::
className
(),
ActiveRecord
::
EVENT_AFTER_INSERT
,
function
(
$event
)
{
Yii
::
trace
(
get_class
(
$event
->
sender
)
.
' is inserted.'
);
// detach $handler
Event
::
off
(
Foo
::
className
(),
Foo
::
EVENT_HELLO
,
$handler
);
// detach all handlers of Foo::EVENT_HELLO
Event
::
off
(
Foo
::
className
(),
Foo
::
EVENT_HELLO
);
```
Global Events
-------------
The so-called
*global event*
is actually a trick based on the event mechanism described above.
It requires a globally accessible singleton, such as the
[
application
](
structure-applications.md
)
instance.
An event sender, instead of calling its own
`trigger()`
method, will call the singleton's
`trigger()`
method
to trigger the event. Similarly, the event handlers are attached to the event of the singleton. For example,
```
php
use
Yii
;
use
yii\base\Event
;
use
app\components\Foo
;
Yii
::
$app
->
on
(
'bar'
,
function
(
$event
)
{
echo
get_class
(
$event
->
sender
);
// displays "app\components\Foo"
});
Yii
::
$app
->
trigger
(
'bar'
,
new
Event
([
'sender'
=>
new
Foo
]));
```
The code above defines a handler that will be triggered for every Active Record object's
`EVENT_AFTER_INSERT`
event.
A benefit of global events is that you do not need the object when attaching a handler to the event
which will be triggered by the object. Instead, the handler attachment and the event triggering are both
done through the singleton (e.g. the application instance).
However, because the namespace of the global events is shared by all parties, you should name the global events
wisely, such as introducing some sort of namespace (e.g. "frontend.mail.sent", "backend.mail.sent").
framework/base/Event.php
View file @
7d31cba3
...
...
@@ -109,7 +109,6 @@ class Event extends Object
}
if
(
$handler
===
null
)
{
unset
(
self
::
$_events
[
$name
][
$class
]);
return
true
;
}
else
{
$removed
=
false
;
...
...
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