ILIAS  release_6 Revision v6.24-5-g0c8bfefb3b8
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 
5 
6 use \ILIAS\UI\Component as C;
9 
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 }
getDropdownAt()
Below this value, the options are directly rendered as shy-buttons, on and above this value a dropdow...
$size
Definition: RandomTest.php:84
withCurrentPage(int $page)
Set the selected page.
withMaxPaginationButtons(int $amount)
Layout; define, how many page-options are shown (max).
withTotalEntries(int $total)
Initialize with the total amount of entries of the controlled data-list.
getOffset()
Get the data&#39;s offset according to current page and page size.
getMaxPaginationButtons()
Get the maximum amount of page-entries (not records per page!) to be shown.
trait JavaScriptBindable
Trait for components implementing JavaScriptBindable providing standard implementation.
getTargetURL()
Get the url this instance should trigger.
withPageSize(int $size)
Set the amount of entries per page.
getCurrentPage()
Get the currently slected page.
A component is the most general form of an entity in the UI.
Definition: Component.php:13
getPageSize()
Get the numebr of entries per page.
$total
Definition: Utf8Test.php:87
withDropdownAt(int $amount)
Layout; when number of page-entries reaches $amount, the options will be rendered as dropdown...
getDefaultDropdownLabel()
Get the default label (for comparison, mainly) - the default label will be translated, a custom label will not.
This describes a Pagination Control.
Definition: Pagination.php:13
getNumberOfPages()
Calculate the total number of pages.
withTargetURL(string $url, string $parameter_name)
Get a Pagination with this target-url.
getDropdownLabel()
Get the template for the label of the dropdown.
withOnSelect(C\Signal $signal)
Register a signal with the control.
getParameterName()
Get the parameter this instance uses.
$url
getPageLength()
Get the current number of entries on this page.
withDropdownLabel(string $template)
Layout; set the label for dropdown.