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
e11ec66b
Commit
e11ec66b
authored
May 20, 2014
by
NmDimas
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
add change to CHANGELOG,and mini refactoring
parent
a047bf2c
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
4 deletions
+4
-4
CHANGELOG.md
framework/CHANGELOG.md
+1
-0
BaseActiveRecord.php
framework/db/BaseActiveRecord.php
+3
-4
No files found.
framework/CHANGELOG.md
View file @
e11ec66b
...
@@ -57,6 +57,7 @@ Yii Framework 2 Change Log
...
@@ -57,6 +57,7 @@ Yii Framework 2 Change Log
-
Enh: Added
`all`
option to
`MigrateController::actionDown()`
action (creocoder, umneeq)
-
Enh: Added
`all`
option to
`MigrateController::actionDown()`
action (creocoder, umneeq)
-
Enh: Added support for array attributes in
`exist`
validator (creocoder)
-
Enh: Added support for array attributes in
`exist`
validator (creocoder)
-
Enh: Added support for using path alias with
`FileDependency::fileName`
(qiangxue)
-
Enh: Added support for using path alias with
`FileDependency::fileName`
(qiangxue)
-
Enh: Added Unlink all relationship in current model (nmdimas)
-
Chg #2913: RBAC
`DbManager`
is now initialized via migration (samdark)
-
Chg #2913: RBAC
`DbManager`
is now initialized via migration (samdark)
-
Chg #3036: Upgraded Twitter Bootstrap to 3.1.x (qiangxue)
-
Chg #3036: Upgraded Twitter Bootstrap to 3.1.x (qiangxue)
-
Chg #3175: InvalidCallException, InvalidParamException, UnknownMethodException are now extended from SPL BadMethodCallException (samdark)
-
Chg #3175: InvalidCallException, InvalidParamException, UnknownMethodException are now extended from SPL BadMethodCallException (samdark)
...
...
framework/db/BaseActiveRecord.php
View file @
e11ec66b
...
@@ -1294,7 +1294,9 @@ abstract class BaseActiveRecord extends Model implements ActiveRecordInterface
...
@@ -1294,7 +1294,9 @@ abstract class BaseActiveRecord extends Model implements ActiveRecordInterface
public
function
unlinkAll
(
$name
)
public
function
unlinkAll
(
$name
)
{
{
$relation
=
$this
->
getRelation
(
$name
);
$relation
=
$this
->
getRelation
(
$name
);
if
(
!
empty
(
$relation
->
via
))
{
if
(
empty
(
$relation
->
via
))
{
throw
new
InvalidCallException
(
'Unable to unlink relationship for the current model. This method is only for many to many relationships.'
);
}
$viaTable
=
$viaTable
=
reset
(
$relation
->
via
->
from
);
$viaTable
=
$viaTable
=
reset
(
$relation
->
via
->
from
);
/** @var ActiveQuery $viaRelation */
/** @var ActiveQuery $viaRelation */
$viaRelation
=
$relation
->
via
;
$viaRelation
=
$relation
->
via
;
...
@@ -1306,9 +1308,6 @@ abstract class BaseActiveRecord extends Model implements ActiveRecordInterface
...
@@ -1306,9 +1308,6 @@ abstract class BaseActiveRecord extends Model implements ActiveRecordInterface
/** @var Command $command */
/** @var Command $command */
$command
=
static
::
getDb
()
->
createCommand
();
$command
=
static
::
getDb
()
->
createCommand
();
$command
->
delete
(
$viaTable
,
$columns
)
->
execute
();
$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.'
);
}
}
}
/**
/**
...
...
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