Question

What is event in yii? How to use event in yii? Example:

public function onForestRan($event){
    $this->raiseEvent('onForestRan', $event);
}
$myComponent->onForestRan = array(new SomeOtherClass, 'eventHandler1');

When the event is triggered?

No correct solution

OTHER TIPS

On the page you got this from there is a link to another resource that explains it quite nice http://www.kofrimpong.com/post/11/How+do+you+create+your+own+event+object%3F

In short you have to raise the event.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top