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
29ef5419
Commit
29ef5419
authored
Oct 28, 2013
by
Carsten Brandt
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'master' into messageformatter-refactoring
* master: ensure parameter types in baselistview message added unit test to verify AR afterSave isNewRecord value
parents
449eb842
3b05e715
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
21 additions
and
2 deletions
+21
-2
ActiveDataProvider.php
framework/yii/data/ActiveDataProvider.php
+1
-1
BaseListView.php
framework/yii/widgets/BaseListView.php
+1
-1
Customer.php
tests/unit/data/ar/Customer.php
+10
-0
ActiveRecordTest.php
tests/unit/framework/db/ActiveRecordTest.php
+9
-0
No files found.
framework/yii/data/ActiveDataProvider.php
View file @
29ef5419
...
...
@@ -158,7 +158,7 @@ class ActiveDataProvider extends BaseDataProvider
throw
new
InvalidConfigException
(
'The "query" property must be an instance of Query or its subclass.'
);
}
$query
=
clone
$this
->
query
;
return
$query
->
limit
(
-
1
)
->
offset
(
-
1
)
->
count
(
'*'
,
$this
->
db
);
return
(
int
)
$query
->
limit
(
-
1
)
->
offset
(
-
1
)
->
count
(
'*'
,
$this
->
db
);
}
/**
...
...
framework/yii/widgets/BaseListView.php
View file @
29ef5419
...
...
@@ -139,7 +139,7 @@ abstract class BaseListView extends Widget
$pageCount
=
$pagination
->
pageCount
;
if
((
$summaryContent
=
$this
->
summary
)
===
null
)
{
$summaryContent
=
'<div class="summary">'
.
Yii
::
t
(
'yii'
,
'Showing <b>{totalCount, plural, =0{0} other{{begin
}-{end}}}</b> of <b>{totalCount
}</b> {totalCount, plural, one{item} other{items}}.'
)
.
Yii
::
t
(
'yii'
,
'Showing <b>{totalCount, plural, =0{0} other{{begin
, number, integer}-{end, number, integer}}}</b> of <b>{totalCount, number, integer
}</b> {totalCount, plural, one{item} other{items}}.'
)
.
'</div>'
;
}
}
else
{
...
...
tests/unit/data/ar/Customer.php
View file @
29ef5419
...
...
@@ -17,6 +17,9 @@ class Customer extends ActiveRecord
public
$status2
;
public
static
$afterSaveInsert
=
null
;
public
static
$afterSaveNewRecord
=
null
;
public
static
function
tableName
()
{
return
'tbl_customer'
;
...
...
@@ -31,4 +34,11 @@ class Customer extends ActiveRecord
{
$query
->
andWhere
(
'status=1'
);
}
public
function
afterSave
(
$insert
)
{
static
::
$afterSaveInsert
=
$insert
;
static
::
$afterSaveNewRecord
=
$this
->
isNewRecord
;
parent
::
afterSave
(
$insert
);
}
}
tests/unit/framework/db/ActiveRecordTest.php
View file @
29ef5419
...
...
@@ -295,10 +295,14 @@ class ActiveRecordTest extends DatabaseTestCase
$this
->
assertNull
(
$customer
->
id
);
$this
->
assertTrue
(
$customer
->
isNewRecord
);
Customer
::
$afterSaveNewRecord
=
null
;
Customer
::
$afterSaveInsert
=
null
;
$customer
->
save
();
$this
->
assertEquals
(
4
,
$customer
->
id
);
$this
->
assertFalse
(
Customer
::
$afterSaveNewRecord
);
$this
->
assertTrue
(
Customer
::
$afterSaveInsert
);
$this
->
assertFalse
(
$customer
->
isNewRecord
);
}
...
...
@@ -309,10 +313,15 @@ class ActiveRecordTest extends DatabaseTestCase
$this
->
assertTrue
(
$customer
instanceof
Customer
);
$this
->
assertEquals
(
'user2'
,
$customer
->
name
);
$this
->
assertFalse
(
$customer
->
isNewRecord
);
Customer
::
$afterSaveNewRecord
=
null
;
Customer
::
$afterSaveInsert
=
null
;
$customer
->
name
=
'user2x'
;
$customer
->
save
();
$this
->
assertEquals
(
'user2x'
,
$customer
->
name
);
$this
->
assertFalse
(
$customer
->
isNewRecord
);
$this
->
assertFalse
(
Customer
::
$afterSaveNewRecord
);
$this
->
assertFalse
(
Customer
::
$afterSaveInsert
);
$customer2
=
Customer
::
find
(
2
);
$this
->
assertEquals
(
'user2x'
,
$customer2
->
name
);
...
...
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