mirror of
https://github.com/yiisoft/yii.git
synced 2026-03-03 23:04:04 +01:00
15 lines
214 B
PHP
15 lines
214 B
PHP
<?php
|
|
|
|
/**
|
|
* Used in CBehaviorTest
|
|
*/
|
|
class BehaviorTestController extends CController
|
|
{
|
|
public $behaviorEventHandled=0;
|
|
|
|
public function onTestEvent()
|
|
{
|
|
$this->raiseEvent("onTestEvent", new CEvent());
|
|
}
|
|
}
|