How To Craete Events Return Data?


public function onAdmin($event)

{

   $this->raiseEvent('onAdmin',$event);

}

$mycom->onAdmin = array(new SomeClass,'myMethod');


public function myMethod($event)

{

   return '123';

}

call:


$mycom->onAdmin(new CEvent($this));

but not return 123, somebody can help me?

I posted an example for you on your other thread http://www.yiiframework.com/forum/index.php/topic/51977-what-is-event-in-yii-how-to-use-event-in-yii/page__gopid__240863#entry240863

It should clear things for you :)