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
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
Rotua Panjaitan
yii2
Commits
7b4e180a
Commit
7b4e180a
authored
Jul 03, 2014
by
Larry Ullman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Changed organization of 1st 3 topics
I think it should be: event handlers, attaching, triggering
parent
71176b19
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
65 additions
and
66 deletions
+65
-66
concept-events.md
docs/guide/concept-events.md
+65
-66
No files found.
docs/guide/concept-events.md
View file @
7b4e180a
...
@@ -10,72 +10,6 @@ Yii introduces a base class called [[yii\base\Component]] to support events. If
...
@@ -10,72 +10,6 @@ Yii introduces a base class called [[yii\base\Component]] to support events. If
events, it should extend from
[
[yii\base\Component
]
], or from a child class.
events, it should extend from
[
[yii\base\Component
]
], or from a child class.
Triggering Events <a name="triggering-events"></a>
-----------------
Events are triggered by calling the
[
[yii\base\Component::trigger()
]
] method. The method requires an
*event name*
,
and optionally an event object that describes the parameters to be passed to the event handlers. For example:
```
php
namespace
app\components
;
use
yii\base\Component
;
use
yii\base\Event
;
class
Foo
extends
Component
{
const
EVENT_HELLO
=
'hello'
;
public
function
bar
()
{
$this
->
trigger
(
self
::
EVENT_HELLO
);
}
}
```
In the above code, when you call
`bar()`
, it will trigger an event named
`hello`
.
> Tip: It is recommended to use class constants to represent event names. In the above example, the constant
`EVENT_HELLO`
is used to represent
`hello`
. This approach has two benefits. First, it prevents typos and can impact IDE
auto-completion support. Second, you can tell what events are supported by a class by simply checking the constant
declarations.
Sometimes when triggering an event, you may want to pass along additional information to the event handlers.
For example, a mailer may want pass the message information to the handlers of the
`messageSent`
event so that the handlers
can know the particulars of the sent messages. To do so, you can provide an event object as the second parameter to
the
[
[yii\base\Component::trigger()
]
] method. The event object must be an instance of the
[
[yii\base\Event
]
] class
or a child class. For example:
```
php
namespace
app\components
;
use
yii\base\Component
;
use
yii\base\Event
;
class
MessageEvent
extends
Event
{
public
$message
;
}
class
Mailer
extends
Component
{
const
EVENT_MESSAGE_SENT
=
'messageSent'
;
public
function
send
(
$message
)
{
// ...sending $message...
$event
=
new
MessageEvent
;
$event
->
message
=
$message
;
$this
->
trigger
(
self
::
EVENT_MESSAGE_SENT
,
$event
);
}
}
```
When the
[
[yii\base\Component::trigger()
]
] method is called, it will call handlers that are attached to
the named event.
Event Handlers <a name="event-handlers"></a>
Event Handlers <a name="event-handlers"></a>
--------------
--------------
...
@@ -174,6 +108,71 @@ section.
...
@@ -174,6 +108,71 @@ section.
]
]
```
```
Triggering Events <a name="triggering-events"></a>
-----------------
Events are triggered by calling the
[
[yii\base\Component::trigger()
]
] method. The method requires an
*event name*
,
and optionally an event object that describes the parameters to be passed to the event handlers. For example:
```
php
namespace
app\components
;
use
yii\base\Component
;
use
yii\base\Event
;
class
Foo
extends
Component
{
const
EVENT_HELLO
=
'hello'
;
public
function
bar
()
{
$this
->
trigger
(
self
::
EVENT_HELLO
);
}
}
```
In the above code, when you call
`bar()`
, it will trigger an event named
`hello`
.
> Tip: It is recommended to use class constants to represent event names. In the above example, the constant
`EVENT_HELLO`
is used to represent
`hello`
. This approach has two benefits. First, it prevents typos and can impact IDE
auto-completion support. Second, you can tell what events are supported by a class by simply checking the constant
declarations.
Sometimes when triggering an event, you may want to pass along additional information to the event handlers.
For example, a mailer may want pass the message information to the handlers of the
`messageSent`
event so that the handlers
can know the particulars of the sent messages. To do so, you can provide an event object as the second parameter to
the
[
[yii\base\Component::trigger()
]
] method. The event object must be an instance of the
[
[yii\base\Event
]
] class
or a child class. For example:
```
php
namespace
app\components
;
use
yii\base\Component
;
use
yii\base\Event
;
class
MessageEvent
extends
Event
{
public
$message
;
}
class
Mailer
extends
Component
{
const
EVENT_MESSAGE_SENT
=
'messageSent'
;
public
function
send
(
$message
)
{
// ...sending $message...
$event
=
new
MessageEvent
;
$event
->
message
=
$message
;
$this
->
trigger
(
self
::
EVENT_MESSAGE_SENT
,
$event
);
}
}
```
When the
[
[yii\base\Component::trigger()
]
] method is called, it will call handlers that are attached to
the named event.
Detaching Event Handlers <a name="detaching-event-handlers"></a>
Detaching Event Handlers <a name="detaching-event-handlers"></a>
------------------------
------------------------
...
...
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