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
41cddc7e
Commit
41cddc7e
authored
May 22, 2014
by
Carsten Brandt
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #3537 from arturf/master
Hide output in LinkPager when only one page exist
parents
8dd3fad7
5a1702e7
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
10 additions
and
2 deletions
+10
-2
CHANGELOG.md
framework/CHANGELOG.md
+1
-0
LinkPager.php
framework/widgets/LinkPager.php
+9
-2
No files found.
framework/CHANGELOG.md
View file @
41cddc7e
...
...
@@ -59,6 +59,7 @@ Yii Framework 2 Change Log
-
Enh: Added
`all`
option to
`MigrateController::actionDown()`
action (creocoder, umneeq)
-
Enh: Added support for array attributes in
`exist`
validator (creocoder)
-
Enh: Added support for using path alias with
`FileDependency::fileName`
(qiangxue)
-
Enh: Added param
`hideOnSinglePage`
to
`yii\widgets\LinkPager`
(arturf)
-
Chg #2913: RBAC
`DbManager`
is now initialized via migration (samdark)
-
Chg #3036: Upgraded Twitter Bootstrap to 3.1.x (qiangxue)
-
Chg #3175: InvalidCallException, InvalidParamException, UnknownMethodException are now extended from SPL BadMethodCallException (samdark)
...
...
framework/widgets/LinkPager.php
View file @
41cddc7e
...
...
@@ -98,6 +98,10 @@ class LinkPager extends Widget
* @see registerLinkTags()
*/
public
$registerLinkTags
=
false
;
/**
* @var boolean Hide widget when only one page exist. Defaults to `false`.
*/
public
$hideOnSinglePage
=
false
;
/**
* Initializes the pager.
...
...
@@ -140,9 +144,12 @@ class LinkPager extends Widget
*/
protected
function
renderPageButtons
()
{
$buttons
=
[];
$pageCount
=
$this
->
pagination
->
getPageCount
();
if
(
$pageCount
<
2
&&
$this
->
hideOnSinglePage
)
{
return
''
;
}
$buttons
=
[];
$currentPage
=
$this
->
pagination
->
getPage
();
// first page
...
...
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