Behaviors & Events provide endless possibilities and unbelievable flexibility, but as current Yii documentation does not give more than a few examples, it might be difficult to fully understand their internals and requirements. It should be noted that they do mostly the same thing. You can attach behaviors and event handlers to components to modify the components’ behavior. It is useful when you want to interrupt the normal application flow without extending base classes. For example, enabling gzip compression on the output could be done via extending CWebApplication. But because there are entry points for event handlers, one can do this: You can create an event handler — which is simply a method in some class with a specific signature — and attach it to the event of an object. You can add as many event handlers as you wish, from as many objects as you wish. If the event handler is, effectively static, then you can create the object as you assign it: As long as you have a handle on the object, then you can add an event handler to it. At some point, you can then raise the event with something like one of these: So, basically, it allows you to build a list of function calls that can later be executed, in the order they were added. It can save you passing around a lot of object refs and building conditional code, since you can still raise the event, even if it doesn’t do anything. Behaviors are simply a way of adding methods to an object. Take this scenario: You have 2 classes: This is where behaviors come in. Instead, you can go: Now In an OO language like Ruby, it’s quite possible to start with a completely empty object and simply build its behavior as you go along. Yii provides this behavior with a little magic. The key is that the class you wish to add the behavior from must extend Cbehavior. Then use with: So, in this case, you are extending the functionality of an object with functionality of another object. Originally posted at http://www.yiiframework.com/wiki/44/Events
Yii::app()->onBeginRequest = create_function('$event', 'return ob_start("ob_gzhandler");'); Yii::app()->onEndRequest = create_function('$event', 'return ob_end_flush();'); $test_comp->onSomethingGoesOn = array(new SomeClass, 'eventHandler1'); $test_comp->onSomethingGoesOn = array(new SomeOtherClass, 'eventHandler2'); $test_comp->onSomethingGoesOn = array(new YetAnotherClass, 'eventHandler3'); $test_comp->onSomethingGoesOn(new CEvent($this)); $test_comp->onSomethingGoesOn(new CEvent()); Behaviors
MySuperClass1, MySuperClass2. There might be lots of methods from MySuperClass1 & 2 that you want in some new class, say MyBoringClass. Unfortunately, php does not allow for this: class MyBoringClass extends MySuperClass1, MySuperClass2 { } class MyBoringClass extends MySuperClass1 { } $classInstance = new MyBoringClass(); $classInstance->attachbehavior('uniqueName', new MySuperClass2); $classInstance has all the methods from MySuperClass1 and MySuperClass2. Since MySuperClass2 is being used as a behavior, it has to extend CBehavior. The only caveat to this is an attached behavior cannot override any class methods of the component it is being attached to. If a method already exists, if it be from the original class or already added by a previously attached behavior, it will not be overwritten. class SomeClass extends CBehavior { public function add($x, $y) { return $x + $y; } } $test_comp = new TestComponent(); $test_comp->attachbehavior('blah', new SomeClass); $test_comp->add(2, 5);
Yii
Yii 1.1: Behaviors & Events
Behaviors & Events provide endless possibilities and unbelievable flexibility, but as current Yii documentation does not give more than a few examples, it m
· 5 min read
Related posts
Yii
How to separate front and admin panel in yii-framework
In my previous post I demonstrated you how to render different layout for different user role, now lets move a step forward and see how to create separate front
Yii
How to save multiple related models in Yii [Complete Solution]
Scenario: You are in a situation where you have two related tables a Parent and a child table. You need to create a user experience in which user presses Save b
Yii
How to make Yii checkBoxList selected
Many people find it hard to make the Yii checkBoxList selected on update view, but believe me in fact its very easy and straight forward. This post will help yo