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
5599a86a
Commit
5599a86a
authored
May 22, 2014
by
NmDimas
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add support all type relation
parent
909f2c17
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
44 additions
and
10 deletions
+44
-10
BaseActiveRecord.php
framework/db/BaseActiveRecord.php
+44
-10
No files found.
framework/db/BaseActiveRecord.php
View file @
5599a86a
...
...
@@ -1286,28 +1286,62 @@ abstract class BaseActiveRecord extends Model implements ActiveRecordInterface
/**
* Destroys the relationship in current model.
*
* Note that this method for relations many to many
* The model with the foreign key of the relationship will be deleted if `$delete` is true.
* Otherwise, the foreign key will be set null and the model will be saved without validation.
*
* Note to destroy the relationship without removing records make sure your keys can be set to null
*
* @param string $name the case sensitive name of the relationship.
* @
throws InvalidCallException if the models cannot be unlinked
* @
param boolean $delete whether to delete the model that contains the foreign key.
*/
public
function
unlinkAll
(
$name
)
public
function
unlinkAll
(
$name
,
$delete
=
false
)
{
$relation
=
$this
->
getRelation
(
$name
);
/** @var Command $command */
$command
=
static
::
getDb
()
->
createCommand
();
$columns
=
[];
$condition
=
[];
if
(
empty
(
$relation
->
via
))
{
throw
new
InvalidCallException
(
'Unable to unlink relationship for the current model. This method is only for many to many relationships.'
);
/** @var $viaClass \yii\db\ActiveRecord */
$viaClass
=
$relation
->
modelClass
;
if
(
$delete
)
{
foreach
(
$relation
->
link
as
$a
=>
$b
)
{
$condition
[
$a
]
=
$this
->
$b
;
}
$command
->
delete
(
$viaClass
::
tableName
(),
$condition
)
->
execute
();
}
else
{
foreach
(
$relation
->
link
as
$a
=>
$b
)
{
$columns
[
$a
]
=
null
;
$condition
[
$a
]
=
$this
->
$b
;
}
$command
->
update
(
$viaClass
::
tableName
(),
$columns
,
$condition
)
->
execute
();
}
}
else
{
$viaTable
=
$viaTable
=
reset
(
$relation
->
via
->
from
);
/** @var ActiveQuery $viaRelation */
$viaRelation
=
$relation
->
via
;
$columns
=
[];
/** @var $viaClass ActiveRecordInterface */
if
(
$delete
)
{
foreach
(
$viaRelation
->
link
as
$a
=>
$b
)
{
$columns
[
$a
]
=
$this
->
$b
;
$condition
[
$a
]
=
$this
->
$b
;
}
$command
->
delete
(
$viaTable
,
$condition
)
->
execute
();
}
else
{
foreach
(
$viaRelation
->
link
as
$a
=>
$b
)
{
$columns
[
$a
]
=
null
;
$condition
[
$a
]
=
$this
->
$b
;
}
$command
->
update
(
$viaTable
,
$columns
,
$condition
)
->
execute
();
}
}
if
(
!
$relation
->
multiple
)
{
unset
(
$this
->
_related
[
$name
]);
}
elseif
(
isset
(
$this
->
_related
[
$name
]))
{
/** @var ActiveRecordInterface $b */
foreach
(
array_keys
(
$this
->
_related
[
$name
])
as
$a
)
{
unset
(
$this
->
_related
[
$name
][
$a
]);
}
}
/** @var Command $command */
$command
=
static
::
getDb
()
->
createCommand
();
$command
->
delete
(
$viaTable
,
$columns
)
->
execute
();
}
/**
...
...
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