Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
U
UserAdminV2
Overview
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
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
庄欣
UserAdminV2
Commits
1c5187b5
Commit
1c5187b5
authored
Jul 22, 2011
by
Taylor Otwell
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
removed span class from paginator class.
parent
c3d36d37
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
15 deletions
+10
-15
system/paginator.php
+10
-15
No files found.
system/paginator.php
View file @
1c5187b5
...
@@ -48,12 +48,10 @@ class Paginator {
...
@@ -48,12 +48,10 @@ class Paginator {
public
function
__construct
(
$results
,
$total
,
$per_page
)
public
function
__construct
(
$results
,
$total
,
$per_page
)
{
{
$this
->
page
=
static
::
page
(
$total
,
$per_page
);
$this
->
page
=
static
::
page
(
$total
,
$per_page
);
$this
->
last_page
=
ceil
(
$total
/
$per_page
);
$this
->
per_page
=
$per_page
;
$this
->
per_page
=
$per_page
;
$this
->
results
=
$results
;
$this
->
results
=
$results
;
$this
->
total
=
$total
;
$this
->
total
=
$total
;
$this
->
last_page
=
ceil
(
$total
/
$per_page
);
}
}
/**
/**
...
@@ -93,14 +91,13 @@ class Paginator {
...
@@ -93,14 +91,13 @@ class Paginator {
*
*
* If there are not enough pages to make it worth sliding, all of the pages will be listed.
* If there are not enough pages to make it worth sliding, all of the pages will be listed.
*
*
* Note: "7" is added to the adjacent range to account for the seven constant elements in a
* slider: the first and last two links, the current page, and the two "..." strings.
*
* @param int $adjacent
* @param int $adjacent
* @return string
* @return string
*/
*/
private
function
numbers
(
$adjacent
=
3
)
private
function
numbers
(
$adjacent
=
3
)
{
{
// "7" is added to the adjacent range to account for the seven constant elements
// in a slider: the first and last two links, the current page, and the two "..." strings.
return
(
$this
->
last_page
<
7
+
(
$adjacent
*
2
))
?
$this
->
range
(
1
,
$this
->
last_page
)
:
$this
->
slider
(
$adjacent
);
return
(
$this
->
last_page
<
7
+
(
$adjacent
*
2
))
?
$this
->
range
(
1
,
$this
->
last_page
)
:
$this
->
slider
(
$adjacent
);
}
}
...
@@ -120,10 +117,8 @@ class Paginator {
...
@@ -120,10 +117,8 @@ class Paginator {
{
{
return
$this
->
beginning
()
.
$this
->
range
(
$this
->
last_page
-
2
-
(
$adjacent
*
2
),
$this
->
last_page
);
return
$this
->
beginning
()
.
$this
->
range
(
$this
->
last_page
-
2
-
(
$adjacent
*
2
),
$this
->
last_page
);
}
}
else
{
return
$this
->
beginning
()
.
$this
->
range
(
$this
->
page
-
$adjacent
,
$this
->
page
+
$adjacent
)
.
$this
->
ending
();
return
$this
->
beginning
()
.
$this
->
range
(
$this
->
page
-
$adjacent
,
$this
->
page
+
$adjacent
)
.
$this
->
ending
();
}
}
}
/**
/**
...
@@ -140,7 +135,7 @@ class Paginator {
...
@@ -140,7 +135,7 @@ class Paginator {
return
HTML
::
link
(
Request
::
uri
()
.
'?page='
.
(
$this
->
page
-
1
),
$text
,
array
(
'class'
=>
'prev_page'
))
.
' '
;
return
HTML
::
link
(
Request
::
uri
()
.
'?page='
.
(
$this
->
page
-
1
),
$text
,
array
(
'class'
=>
'prev_page'
))
.
' '
;
}
}
return
HTML
::
span
(
$text
,
array
(
'class'
=>
'disabled prev_page'
))
.
' '
;
return
"<span class=
\"
disabled prev_page
\"
>
$text
</span> "
;
}
}
/**
/**
...
@@ -157,7 +152,7 @@ class Paginator {
...
@@ -157,7 +152,7 @@ class Paginator {
return
HTML
::
link
(
Request
::
uri
()
.
'?page='
.
(
$this
->
page
+
1
),
$text
,
array
(
'class'
=>
'next_page'
));
return
HTML
::
link
(
Request
::
uri
()
.
'?page='
.
(
$this
->
page
+
1
),
$text
,
array
(
'class'
=>
'next_page'
));
}
}
return
HTML
::
span
(
$text
,
array
(
'class'
=>
'disabled next_page'
))
;
return
"<span class=
\"
disabled next_page
\"
>
$text
</span>"
;
}
}
/**
/**
...
@@ -167,7 +162,7 @@ class Paginator {
...
@@ -167,7 +162,7 @@ class Paginator {
*/
*/
private
function
beginning
()
private
function
beginning
()
{
{
return
$this
->
range
(
1
,
2
)
.
'<span class="dots">...</span>'
;
return
$this
->
range
(
1
,
2
)
.
'<span class="dots">...</span>
'
;
}
}
/**
/**
...
@@ -177,7 +172,7 @@ class Paginator {
...
@@ -177,7 +172,7 @@ class Paginator {
*/
*/
private
function
ending
()
private
function
ending
()
{
{
return
'<span class="dots">...</span>'
.
$this
->
range
(
$this
->
last_page
-
1
,
$this
->
last_page
);
return
'<span class="dots">...</span>
'
.
$this
->
range
(
$this
->
last_page
-
1
,
$this
->
last_page
);
}
}
/**
/**
...
@@ -195,7 +190,7 @@ class Paginator {
...
@@ -195,7 +190,7 @@ class Paginator {
for
(
$i
=
$start
;
$i
<=
$end
;
$i
++
)
for
(
$i
=
$start
;
$i
<=
$end
;
$i
++
)
{
{
$pages
.=
(
$this
->
page
==
$i
)
?
HTML
::
span
(
$i
,
array
(
'class'
=>
'current'
))
.
' '
:
HTML
::
link
(
Request
::
uri
()
.
'?page='
.
$i
,
$i
)
.
' '
;
$pages
.=
(
$this
->
page
==
$i
)
?
"<span class=
\"
current
\"
>
$i
</span> "
:
HTML
::
link
(
Request
::
uri
()
.
'?page='
.
$i
,
$i
)
.
' '
;
}
}
return
$pages
;
return
$pages
;
...
...
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