Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
Y
yii2
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
PSDI Army
yii2
Commits
452fcc0f
Commit
452fcc0f
authored
Aug 28, 2014
by
Qiang Xue
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixes #4845
parent
a12e1630
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
33 additions
and
1 deletion
+33
-1
intro-upgrade-from-v1.md
docs/guide/intro-upgrade-from-v1.md
+33
-1
No files found.
docs/guide/intro-upgrade-from-v1.md
View file @
452fcc0f
...
@@ -459,13 +459,45 @@ public function init()
...
@@ -459,13 +459,45 @@ public function init()
}
}
```
```
There w
h
ere some problems with overriding the constructor of an ActiveRecord class in 1.1. These are not present in
There were some problems with overriding the constructor of an ActiveRecord class in 1.1. These are not present in
version 2.0 anymore. Note that when adding parameters to the constructor you might have to override
[
[yii\db\ActiveRecord::instantiate()
]
].
version 2.0 anymore. Note that when adding parameters to the constructor you might have to override
[
[yii\db\ActiveRecord::instantiate()
]
].
There are many other changes and enhancements to Active Record. Please refer to
There are many other changes and enhancements to Active Record. Please refer to
the
[
Active Record
](
db-active-record.md
)
section for more details.
the
[
Active Record
](
db-active-record.md
)
section for more details.
Active Record Behaviors
-----------------------
In 2.0, we have dropped the base behavior class
`CActiveRecordBehavior`
. If you want to create an Active Record Behavior,
you will have to extend directly from
`yii\base\Behavior`
. If the behavior class needs to respond to some events
of the owner, you have to override the
`events()`
method like the following,
```
php
namespace
app\components
;
use
yii\db\ActiveRecord
;
use
yii\base\Behavior
;
class
MyBehavior
extends
Behavior
{
// ...
public
function
events
()
{
return
[
ActiveRecord
::
EVENT_BEFORE_VALIDATE
=>
'beforeValidate'
,
];
}
public
function
beforeValidate
(
$event
)
{
// ...
}
}
```
User and IdentityInterface
User and IdentityInterface
--------------------------
--------------------------
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment