Commit b44d0eb6 by Alexander Makarov

Docs: typo fixes, updated behaviors chapter

parent b496a04f
...@@ -37,20 +37,26 @@ In the above, the `class` value is a string representing the fully qualified beh ...@@ -37,20 +37,26 @@ In the above, the `class` value is a string representing the fully qualified beh
Creating your own behaviors Creating your own behaviors
--------------------------- ---------------------------
[[NEEDS UPDATING FOR Yii 2]] To create your own behavior, you must define a class that extends [[yii\base\Behavior]].
To create your own behavior, you must define a class that implements the `IBehavior` interface. This can be accomplished by extending `CBehavior`. More specifically, you can extend `CModelBehavior` or `CActiveRecordBehavior` for behaviors to be used specifically with models or with Active Record models.
```php ```php
class MyBehavior extends CActiveRecordBehavior namespace app\components;
use yii\base\Behavior;
class MyBehavior extends Behavior
{ {
} }
``` ```
To make your behavior customizable, like `AutoTimestamp`, add public properties: To make it customizable, like [[yii\behaviors\AutoTimestamp]], add public properties:
```php ```php
class MyBehavior extends CActiveRecordBehavior namespace app\components;
use yii\base\Behavior;
class MyBehavior extends Behavior
{ {
public $attr; public $attr;
} }
...@@ -59,6 +65,10 @@ class MyBehavior extends CActiveRecordBehavior ...@@ -59,6 +65,10 @@ class MyBehavior extends CActiveRecordBehavior
Now, when the behavior is used, you can set the attribute to which you'd want the behavior to be applied: Now, when the behavior is used, you can set the attribute to which you'd want the behavior to be applied:
```php ```php
namespace app\models;
use yii\db\ActiveRecord;
class User extends ActiveRecord class User extends ActiveRecord
{ {
// ... // ...
...@@ -67,23 +77,42 @@ class User extends ActiveRecord ...@@ -67,23 +77,42 @@ class User extends ActiveRecord
{ {
return [ return [
'mybehavior' => [ 'mybehavior' => [
'class' => 'ext\mybehavior\MyBehavior', 'class' => 'app\components\MyBehavior',
'attr' => 'member_type' 'attr' => 'member_type'
],
], ],
]; ];
} }
} }
``` ```
Behaviors are normally written to take action when certain model-related events occur, such as `beforeSave` or `afterFind`. You can write your behaviors to have the corresponding method. Within the method, you can access the model instance through `$this->getOwner()`: Behaviors are normally written to take action when certain events occur. Below we're implementing `events` method
to assign event handlers:
```php ```php
class MyBehavior extends CActiveRecordBehavior namespace app\components;
use yii\base\Behavior;
use yii\db\ActiveRecord;
class MyBehavior extends Behavior
{ {
public $attr; public $attr;
public function beforeSave() {
$model = $this->getOwner(); public function events()
{
return [
ActiveRecord::EVENT_BEFORE_INSERT => 'beforeInsert',
ActiveRecord::EVENT_BEFORE_UPDATE => 'beforeUpdate',
];
}
public function beforeInsert() {
$model = $this->owner;
// Use $model->$attr
}
public function beforeUpdate() {
$model = $this->owner;
// Use $model->$attr // Use $model->$attr
} }
} }
......
...@@ -8,7 +8,7 @@ Most often a controller takes HTTP request data and returns HTML, JSON or XML as ...@@ -8,7 +8,7 @@ Most often a controller takes HTTP request data and returns HTML, JSON or XML as
Basics Basics
------ ------
Controller resides in application's `controllers` directory is is named like `SiteController.php` where `Site` Controller resides in application's `controllers` directory is named like `SiteController.php` where `Site`
part could be anything describing a set of actions it contains. part could be anything describing a set of actions it contains.
The basic web controller is a class that extends [[\yii\web\Controller]] and could be very simple: The basic web controller is a class that extends [[\yii\web\Controller]] and could be very simple:
...@@ -200,7 +200,7 @@ The following code is too simple to implement as a separate action but gives an ...@@ -200,7 +200,7 @@ The following code is too simple to implement as a separate action but gives an
can be used in your controller as following: can be used in your controller as following:
```php ```php
public SiteController extends \yii\web\Controller class SiteController extends \yii\web\Controller
{ {
public function actions() public function actions()
{ {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment