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
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
Rotua Panjaitan
yii2
Commits
1c93c503
Commit
1c93c503
authored
May 07, 2013
by
Qiang Xue
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #160 from creocoder/active-record-refactoring
ActiveRecord::insert() and ActiveRecord::update() refactoring
parents
dd596914
e3f6faf5
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
11 deletions
+4
-11
ActiveRecord.php
framework/db/ActiveRecord.php
+4
-11
No files found.
framework/db/ActiveRecord.php
View file @
1c93c503
...
@@ -667,12 +667,11 @@ class ActiveRecord extends Model
...
@@ -667,12 +667,11 @@ class ActiveRecord extends Model
*/
*/
public
function
insert
(
$runValidation
=
true
,
$attributes
=
null
)
public
function
insert
(
$runValidation
=
true
,
$attributes
=
null
)
{
{
if
(
$runValidation
&&
!
$this
->
validate
(
$attributes
))
{
if
(
$runValidation
&&
!
$this
->
validate
(
$attributes
)
||
!
$this
->
beforeSave
(
true
)
)
{
return
false
;
return
false
;
}
}
if
(
$this
->
beforeSave
(
true
))
{
$values
=
$this
->
getDirtyAttributes
(
$attributes
);
$values
=
$this
->
getDirtyAttributes
(
$attributes
);
if
(
$values
===
array
(
))
{
if
(
empty
(
$values
))
{
foreach
(
$this
->
primaryKey
()
as
$key
)
{
foreach
(
$this
->
primaryKey
()
as
$key
)
{
$values
[
$key
]
=
isset
(
$this
->
_attributes
[
$key
])
?
$this
->
_attributes
[
$key
]
:
null
;
$values
[
$key
]
=
isset
(
$this
->
_attributes
[
$key
])
?
$this
->
_attributes
[
$key
]
:
null
;
}
}
...
@@ -696,8 +695,6 @@ class ActiveRecord extends Model
...
@@ -696,8 +695,6 @@ class ActiveRecord extends Model
return
true
;
return
true
;
}
}
}
}
return
false
;
}
/**
/**
* Saves the changes to this active record into the associated database table.
* Saves the changes to this active record into the associated database table.
...
@@ -750,12 +747,11 @@ class ActiveRecord extends Model
...
@@ -750,12 +747,11 @@ class ActiveRecord extends Model
*/
*/
public
function
update
(
$runValidation
=
true
,
$attributes
=
null
)
public
function
update
(
$runValidation
=
true
,
$attributes
=
null
)
{
{
if
(
$runValidation
&&
!
$this
->
validate
(
$attributes
))
{
if
(
$runValidation
&&
!
$this
->
validate
(
$attributes
)
||
!
$this
->
beforeSave
(
false
)
)
{
return
false
;
return
false
;
}
}
if
(
$this
->
beforeSave
(
false
))
{
$values
=
$this
->
getDirtyAttributes
(
$attributes
);
$values
=
$this
->
getDirtyAttributes
(
$attributes
);
if
(
$values
!==
array
(
))
{
if
(
!
empty
(
$values
))
{
$condition
=
$this
->
getOldPrimaryKey
(
true
);
$condition
=
$this
->
getOldPrimaryKey
(
true
);
$lock
=
$this
->
optimisticLock
();
$lock
=
$this
->
optimisticLock
();
if
(
$lock
!==
null
)
{
if
(
$lock
!==
null
)
{
...
@@ -781,9 +777,6 @@ class ActiveRecord extends Model
...
@@ -781,9 +777,6 @@ class ActiveRecord extends Model
}
else
{
}
else
{
return
0
;
return
0
;
}
}
}
else
{
return
false
;
}
}
}
/**
/**
...
...
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