Browse Source

Merge pull request #1492 from egorpromo/more-docs-for-event

More docs for /yii/base/Component.php::trigger()
tags/2.0.0-beta
Carsten Brandt 11 years ago
parent
commit
033e743f5b
  1. 3
      framework/yii/base/Component.php

3
framework/yii/base/Component.php

@ -432,7 +432,7 @@ class Component extends Object
/** /**
* Triggers an event. * Triggers an event.
* This method represents the happening of an event. It invokes * This method represents the happening of an event. It invokes
* all attached handlers for the event. * all attached handlers for the event including 'class-level' handlers
* @param string $name the event name * @param string $name the event name
* @param Event $event the event parameter. If not set, a default [[Event]] object will be created. * @param Event $event the event parameter. If not set, a default [[Event]] object will be created.
*/ */
@ -457,6 +457,7 @@ class Component extends Object
} }
} }
} }
//invoke 'class-level' attached handlers
Event::trigger($this, $name, $event); Event::trigger($this, $name, $event);
} }

Loading…
Cancel
Save