ILIAS
release_6 Revision v6.24-5-g0c8bfefb3b8
◀ 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
s
t
w
+
Functions
_
a
b
c
f
g
h
i
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
13
interface
Pagination
extends
C\Component
,
JavaScriptBindable
,
Triggerer
14
{
15
const
DEFAULT_DROPDOWN_LABEL
=
'pagination_label_x_of_y'
;
16
23
public
function
withTargetURL
(
string
$url
,
string
$parameter_name) :
Pagination
;
24
30
public
function
getTargetURL
();
31
35
public
function
getParameterName
() : string;
36
41
public
function
withTotalEntries
(
int
$total
) :
Pagination
;
42
46
public
function
withPageSize
(
int
$size
) :
Pagination
;
47
51
public
function
getPageSize
() : int;
52
56
public
function
withCurrentPage
(
int
$page) :
Pagination
;
57
61
public
function
getCurrentPage
() : int;
62
66
public
function
getOffset
() : int;
67
71
public
function
withOnSelect
(
C
\
Signal
$signal) :
Pagination
;
72
76
public
function
getNumberOfPages
() : int;
77
81
public
function
withMaxPaginationButtons
(
int
$amount) :
Pagination
;
82
89
public
function
getMaxPaginationButtons
();
90
95
public
function
withDropdownAt
(
int
$amount) :
Pagination
;
96
103
public
function
getDropdownAt
();
104
112
public
function
withDropdownLabel
(
string
$template) :
Pagination
;
113
117
public
function
getDropdownLabel
() : string;
118
123
public
function
getDefaultDropdownLabel
() : string;
124
128
public
function
getPageLength
() : int;
129
}
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:15
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\getOffset
getOffset()
Get the data's offset according to current page and page size.
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 slected 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 numebr 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:13
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\UI\Component\ViewControl\Pagination\getPageLength
getPageLength()
Get the current number of entries on this page.
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 20:01:40 for ILIAS by
1.8.13 (using
Doxyfile
)