質問

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?

正しい解決策はありません

他のヒント

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.

ライセンス: CC-BY-SA帰属
所属していません StackOverflow
scroll top