19 declare(strict_types=1);
49 private \ILIAS\ResourceStorage\Services
$irss;
62 $this->irss = $DIC->resourceStorage();
63 $this->data_factory = new \ILIAS\Data\Factory();
68 yield
from $this->upload_builder->getDropZone();
70 yield $this->ui_factory->panel()->standard(
71 $this->request->getTitle(),
81 return $this->ui_factory->table()->data(
85 self::F_TITLE => $this->ui_factory->table()->column()->text(
87 )->withIsSortable(
true),
88 self::F_SIZE => $this->ui_factory->table()->column()->text(
90 )->withIsSortable(
true),
91 self::F_CREATION_DATE => $this->ui_factory->table()->column()->date(
92 $this->
language->txt(self::F_CREATION_DATE),
93 $this->data_factory->dateFormat()->germanLong()
94 )->withIsSortable(
true),
95 self::F_TYPE => $this->ui_factory->table()->column()->text(
97 )->withIsSortable(
false),
100 $this->
http->request()
102 $this->action_builder->getActions()
104 new Range(0, $this->request->getItemsPerPage())
110 array $visible_column_ids,
114 ?array $additional_parameters
118 foreach ($this->data_provider->getIdentifications() as $resource_identification) {
119 $information = $this->getResourceInfo($resource_identification);
120 $mime_type = $information->getMimeType();
123 $this->
hash($resource_identification->serialize()),
125 self::F_TITLE => $information->getTitle(),
126 self::F_SIZE => $this->formatSize($information->getSize()),
127 self::F_CREATION_DATE => $information->getCreationDate(),
128 self::F_TYPE => $information->getMimeType(),
132 if (!in_array($mime_type, [
'application/zip',
'application/x-zip-compressed'])) {
142 $sort_field = array_keys($order->
get())[0];
143 $sort_direction = $order->
get()[$sort_field];
147 $this->data_provider->getViewRequest()->setPage((
int) round($start / $length, 0, \RoundingMode::HalfTowardsZero));
148 $this->data_provider->getViewRequest()->setItemsPerPage($length);
150 switch ($sort_field .
'_' . $sort_direction) {
163 case self::F_CREATION_DATE .
'_' .
Order::ASC:
174 return $this->data_provider->getTotal();
__construct(private Request $request, private Factory $ui_factory, private \ilLanguage $language, private Services $http, private TableDataProvider $data_provider, private ActionBuilder $action_builder, private ViewControlBuilder $view_control_builder, private UploadBuilder $upload_builder)
const BY_CREATION_DATE_ASC
Both the subject and the direction need to be specified when expressing an order. ...
getRows(DataRowBuilder $row_builder, array $visible_column_ids, Range $range, Order $order, ?array $filter_data, ?array $additional_parameters)
This is called by the table to retrieve rows; map data-records to rows using the $row_builder e...
buildDataRow(string $id, array $record)
const BY_CREATION_DATE_DESC
static http()
Fetches the global http state from ILIAS.
ILIAS ResourceStorage Services $irss
This is how the factory for UI elements looks.
ILIAS Data Factory $data_factory
initSortingAndOrdering(Range $range, Order $order)
language()
description: > Example for rendring a language glyph.
getTotalRowCount(?array $filter_data, ?array $additional_parameters)
Mainly for the purpose of pagination-support, it is important to know about the total number of recor...
A simple class to express a naive range of whole positive numbers.