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
a047bf2c
Commit
a047bf2c
authored
May 20, 2014
by
NmDimas
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Method to unlink all relationship many to many in current model
parent
249e27a8
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
28 additions
and
0 deletions
+28
-0
BaseActiveRecord.php
framework/db/BaseActiveRecord.php
+28
-0
No files found.
framework/db/BaseActiveRecord.php
View file @
a047bf2c
...
...
@@ -1284,6 +1284,34 @@ abstract class BaseActiveRecord extends Model implements ActiveRecordInterface
}
/**
* Destroys the relationship in current model.
*
* Note that this method for relations many to many
*
* @param string $name the case sensitive name of the relationship.
* @throws InvalidCallException if the models cannot be unlinked
*/
public
function
unlinkAll
(
$name
)
{
$relation
=
$this
->
getRelation
(
$name
);
if
(
!
empty
(
$relation
->
via
))
{
$viaTable
=
$viaTable
=
reset
(
$relation
->
via
->
from
);
/** @var ActiveQuery $viaRelation */
$viaRelation
=
$relation
->
via
;
$columns
=
[];
/** @var $viaClass ActiveRecordInterface */
foreach
(
$viaRelation
->
link
as
$a
=>
$b
)
{
$columns
[
$a
]
=
$this
->
$b
;
}
/** @var Command $command */
$command
=
static
::
getDb
()
->
createCommand
();
$command
->
delete
(
$viaTable
,
$columns
)
->
execute
();
}
else
{
throw
new
InvalidCallException
(
'Unable to unlink relationship for the current model. This method is only for many to many relationships.'
);
}
}
/**
* @param array $link
* @param ActiveRecordInterface $foreignModel
* @param ActiveRecordInterface $primaryModel
...
...
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