ILIAS
release_7 Revision v7.30-3-g800a261c036
◀ ilDoc Overview
Main Page
Related Pages
Modules
+
Namespaces
Namespace List
+
Namespace Members
+
All
$
_
a
b
c
d
e
f
g
h
i
j
l
m
p
r
s
t
w
+
Functions
_
a
b
c
f
g
h
i
r
s
t
w
+
Variables
$
c
d
e
f
g
h
j
l
m
p
s
t
+
Data Structures
Data Structures
Data Structure Index
Class Hierarchy
+
Data Fields
+
All
$
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
+
Functions
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
+
Variables
$
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
+
Files
File List
+
Globals
+
All
$
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
z
+
Functions
_
a
b
c
d
e
f
g
h
i
l
m
n
o
p
r
s
t
u
v
w
x
+
Variables
$
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
z
Examples
•
All
Data Structures
Namespaces
Files
Functions
Variables
Modules
Pages
Pagination.php
Go to the documentation of this file.
1
<?php
2
/* Copyright (c) 2017 Nils Haagen <nils.haagen@concepts-and-training.de> Extended GPL, see docs/LICENSE */
3
4
namespace
ILIAS\UI\Component\ViewControl
;
5
6
use \ILIAS\UI\Component as
C
;
7
use
ILIAS\UI\Component\JavaScriptBindable
;
8
use
ILIAS\UI\Component\Triggerer
;
9
use
ILIAS\Data\Range
;
10
14
interface
Pagination
extends
C\Component
,
JavaScriptBindable
,
Triggerer
15
{
16
public
const
DEFAULT_DROPDOWN_LABEL
=
'pagination_label_x_of_y'
;
17
24
public
function
withTargetURL
(
string
$url
,
string
$parameter_name) :
Pagination
;
25
31
public
function
getTargetURL
();
32
36
public
function
getParameterName
() : string;
37
42
public
function
withTotalEntries
(
int
$total
) :
Pagination
;
43
47
public
function
withPageSize
(
int
$size
) :
Pagination
;
48
52
public
function
getPageSize
() : int;
53
57
public
function
withCurrentPage
(
int
$page) :
Pagination
;
58
62
public
function
getCurrentPage
() : int;
63
67
public
function
withOnSelect
(
C
\
Signal
$signal) :
Pagination
;
68
72
public
function
getNumberOfPages
() : int;
73
77
public
function
withMaxPaginationButtons
(
int
$amount) :
Pagination
;
78
85
public
function
getMaxPaginationButtons
();
86
91
public
function
withDropdownAt
(
int
$amount) :
Pagination
;
92
99
public
function
getDropdownAt
();
100
108
public
function
withDropdownLabel
(
string
$template) :
Pagination
;
109
113
public
function
getDropdownLabel
() : string;
114
119
public
function
getDefaultDropdownLabel
() : string;
120
124
public
function
getRange
() :
Range
;
125
}
ILIAS\UI\Component\ViewControl\Pagination\getDropdownAt
getDropdownAt()
Below this value, the options are directly rendered as shy-buttons, on and above this value a dropdow...
$size
$size
Definition:
RandomTest.php:84
ILIAS\UI\Component\ViewControl\Pagination\withCurrentPage
withCurrentPage(int $page)
Set the selected page.
JavaScriptBindable
ILIAS\UI\Component\ViewControl\Pagination\DEFAULT_DROPDOWN_LABEL
const DEFAULT_DROPDOWN_LABEL
Definition:
Pagination.php:16
ILIAS\UI\Component\ViewControl\Pagination\getRange
getRange()
Get the current number of entries on this page.
ILIAS\UI\Component\ViewControl\Pagination\withMaxPaginationButtons
withMaxPaginationButtons(int $amount)
Layout; define, how many page-options are shown (max).
ILIAS\UI\Component\ViewControl\Pagination\withTotalEntries
withTotalEntries(int $total)
Initialize with the total amount of entries of the controlled data-list.
ILIAS\UI\Component\ViewControl\Pagination\getMaxPaginationButtons
getMaxPaginationButtons()
Get the maximum amount of page-entries (not records per page!) to be shown.
Triggerer
ILIAS\UI\Component
ILIAS\UI\Implementation\Component\JavaScriptBindable
trait JavaScriptBindable
Trait for components implementing JavaScriptBindable providing standard implementation.
Definition:
JavaScriptBindable.php:12
ILIAS\UI\Component\ViewControl\Pagination\getTargetURL
getTargetURL()
Get the url this instance should trigger.
ILIAS\UI\Component\ViewControl\Pagination\withPageSize
withPageSize(int $size)
Set the amount of entries per page.
ILIAS\UI\Component\ViewControl\Pagination\getCurrentPage
getCurrentPage()
Get the currently selected page.
ILIAS\UI\Component\ViewControl
Definition:
Factory.php:5
ILIAS\UI\Component\Component
A component is the most general form of an entity in the UI.
Definition:
Component.php:13
ILIAS\UI\Component\ViewControl\Pagination\getPageSize
getPageSize()
Get the number of entries per page.
ILIAS\UI\Implementation\Component\Triggerer
trait Triggerer
Definition:
Triggerer.php:17
$total
$total
Definition:
Utf8Test.php:87
ILIAS\UI\Component\ViewControl\Pagination\withDropdownAt
withDropdownAt(int $amount)
Layout; when number of page-entries reaches $amount, the options will be rendered as dropdown...
ILIAS\UI\Component\ViewControl\Pagination\getDefaultDropdownLabel
getDefaultDropdownLabel()
Get the default label (for comparison, mainly) - the default label will be translated, a custom label will not.
ILIAS\UI\Component\ViewControl\Pagination
This describes a Pagination Control.
Definition:
Pagination.php:14
Range
ILIAS\UI\Component\ViewControl\Pagination\getNumberOfPages
getNumberOfPages()
Calculate the total number of pages.
ILIAS\UI\Component\ViewControl\Pagination\withTargetURL
withTargetURL(string $url, string $parameter_name)
Get a Pagination with this target-url.
ILIAS\UI\Component\ViewControl\Pagination\getDropdownLabel
getDropdownLabel()
Get the template for the label of the dropdown.
ILIAS\UI\Component\Signal
Definition:
Signal.php:13
ILIAS\UI\Component\ViewControl\Pagination\withOnSelect
withOnSelect(C\Signal $signal)
Register a signal with the control.
ILIAS\UI\Component\ViewControl\Pagination\getParameterName
getParameterName()
Get the parameter this instance uses.
$url
$url
Definition:
proxy_ylocal.php:28
ILIAS\Data\Range
A simple class to express a naive range of whole positive numbers.
Definition:
Range.php:10
ILIAS\UI\Component\ViewControl\Pagination\withDropdownLabel
withDropdownLabel(string $template)
Layout; set the label for dropdown.
src
UI
Component
ViewControl
Pagination.php
Generated on Sat Apr 5 2025 21:01:47 for ILIAS by
1.8.13 (using
Doxyfile
)