ILIAS  trunk Revision v11.0_alpha-1715-g7fc467680fb
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
ViewControlBuilder.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
22 
27 
31 final class ViewControlBuilder
32 {
33  public function __construct(
34  private Request $request,
35  private TableDataProvider $data_provider,
36  private \ilCtrlInterface $ctrl,
37  private Factory $ui_factory,
38  private \ilLanguage $language,
39  ) {
40  }
41 
42  public function getPagination(): Pagination
43  {
44  return $this->ui_factory->viewControl()
45  ->pagination()
46  ->withPageSize($this->request->getItemsPerPage())
47  ->withCurrentPage($this->request->getPage())
48  ->withTotalEntries($this->data_provider->getTotal())
49  ->withTargetURL(
50  $this->ctrl->getLinkTargetByClass(
51  \ilContainerResourceGUI::class,
53  ),
55  );
56  }
57 
58  public function getSortation(): Sortation
59  {
60  return $this->ui_factory->viewControl()->sortation([
67  ])->withTargetURL(
68  $this->ctrl->getLinkTargetByClass(
69  \ilContainerResourceGUI::class,
71  ),
73  );
74  }
75 }
withPageSize(int $size)
Set the amount of entries per page.
This describes a Pagination Control.
Definition: Pagination.php:32
This is how the factory for UI elements looks.
Definition: Factory.php:37
__construct(private Request $request, private TableDataProvider $data_provider, private \ilCtrlInterface $ctrl, private Factory $ui_factory, private \ilLanguage $language,)
This describes a Sortation Control.
Definition: Sortation.php:31
language()
description: > Example for rendring a language glyph.
Definition: language.php:41