19 declare(strict_types=1);
50 public const HOME =
'HOME';
52 private \ILIAS\ResourceStorage\Services
$irss;
71 $this->data_factory = new \ILIAS\Data\Factory();
72 $this->ui_renderer = $DIC->ui()->renderer();
73 $this->
ctrl = $DIC->ctrl();
74 $this->actions = $this->action_builder->getActionProvider()->getSingleActions(
82 if ($this->request->canUserAdministrate()) {
83 foreach ($this->action_builder->getActionProvider()->getTopActions() as $top_action) {
84 if ($top_action->getAction() instanceof
Signal) {
85 $button = $this->ui_factory->button()->shy(
86 $top_action->getLabel(),
88 )->withOnClick($top_action->getAction());
90 $button = $this->ui_factory->button()->shy(
91 $top_action->getLabel(),
92 (string) $top_action->getAction()
99 return $this->ui_factory->dropdown()->standard($buttons);
104 $get_action =
function (
string $path_inside_zip):
string {
105 $this->
ctrl->setParameterByClass(
106 \ilContainerResourceGUI::class,
108 $this->
hash($path_inside_zip)
110 return $this->
ctrl->getLinkTargetByClass(
111 \ilContainerResourceGUI::class,
118 $links[] = $this->ui_factory->link()->standard(
119 $this->
language->txt(
'home_directory'),
124 if ($this->request->getPath() !==
'./') {
125 $directories = array_filter(
126 explode(
'/', $this->request->getPath()),
127 static fn(
string $part):
bool => $part !==
'' 130 foreach ($directories as $i => $directory) {
131 $path_inside_zip = rtrim(
132 implode(
'/', array_slice($directories, 0, $i + 1)),
135 $links[] = $this->ui_factory->link()->standard(
137 $get_action($path_inside_zip)
141 yield $this->ui_factory->divider()->horizontal();
143 yield $this->ui_factory->breadcrumbs($links);
151 yield $this->ui_factory->panel()->standard(
152 $this->
language->txt(
'title_manage_container'),
154 iterator_to_array($this->upload_builder->getDropZone()),
157 )->withActions($dropdown);
167 return $this->ui_factory->table()->data(
169 $this->request->getTitle(),
171 self::F_TITLE => $this->ui_factory->table()->column()->text(
173 )->withIsSortable(
true),
174 self::F_SIZE => $this->ui_factory->table()->column()->text(
176 )->withIsSortable(
true),
177 self::F_MODIFICATION_DATE => $this->ui_factory->table()->column()->date(
178 $this->
language->txt(self::F_MODIFICATION_DATE),
179 $this->data_factory->dateFormat()->germanLong()
180 )->withIsSortable(
true),
181 self::F_TYPE => $this->ui_factory->table()->column()->text(
183 )->withIsSortable(
true),
186 $this->
http->request()
188 $this->action_builder->getActions()
190 new Range(0, $this->request->getItemsPerPage())
196 array $visible_column_ids,
200 ?array $additional_parameters
206 $entries = $this->data_provider->getEntries();
208 $entries = array_slice(
214 foreach ($entries as $entry) {
215 $is_dir = $entry instanceof
Dir;
218 $entry_name = trim((
string) $entry,
'/');
221 $this->
ctrl->setParameterByClass(
222 \ilContainerResourceGUI::class,
224 $this->
hash($path_inside_zip)
227 $action = $this->
ctrl->getLinkTargetByClass(
228 \ilContainerResourceGUI::class,
233 ? $this->ui_renderer->render(
234 $this->ui_factory->link()->standard($entry_name, $action)
239 $this->
hash($entry->getPathInsideZIP()),
241 self::F_TITLE => $title,
242 self::F_SIZE => $is_dir ?
'' : $this->formatSize($entry->getSize()),
243 self::F_TYPE => $is_dir ?
'' : $entry->getMimeType(),
244 self::F_MODIFICATION_DATE => $entry->getModificationDate(),
248 foreach ($this->actions as $key => $single_action) {
249 if ($is_dir && !$single_action->supportsDirectories()) {
250 $data_row = $data_row->withDisabledAction($key);
253 if ($single_action->getSupportedMimeTypes() !== [
'*']) {
255 $data_row = $data_row->withDisabledAction($key);
257 if (isset($regex_storage[$key])) {
258 $regex = $regex_storage[$key];
260 $mime_type_quoted = [];
261 foreach ($single_action->getSupportedMimeTypes() as $mime_type) {
262 $mime_type_quoted[] = str_replace(
'*',
'.*', preg_quote((
string) $mime_type,
'/'));
265 $regex_storage[$key] = $regex = implode(
'|', $mime_type_quoted);
267 if (!preg_match(
"/($regex)/", $entry->getMimeType())) {
268 $data_row = $data_row->withDisabledAction($key);
279 $sort_field = array_keys($order->
get())[0];
280 $sort_direction = $order->
get()[$sort_field];
284 $this->data_provider->getViewRequest()->setPage((
int) round($start / $length, 0, \RoundingMode::HalfTowardsZero));
285 $this->data_provider->getViewRequest()->setItemsPerPage($length);
287 switch ($sort_field .
'_' . $sort_direction) {
300 case self::F_MODIFICATION_DATE .
'_' .
Order::ASC:
303 case self::F_MODIFICATION_DATE .
'_' .
Order::DESC:
317 return $this->data_provider->getTotal();
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...
ILIAS Data Factory $data_factory
const F_MODIFICATION_DATE
Both the subject and the direction need to be specified when expressing an order. ...
buildDataRow(string $id, array $record)
const BY_CREATION_DATE_ASC
static http()
Fetches the global http state from ILIAS.
This is how the factory for UI elements looks.
initSortingAndOrdering(Range $range, Order $order)
const BY_CREATION_DATE_DESC
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...
ILIAS ResourceStorage Services $irss
__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)
language()
description: > Example for rendring a language glyph.
This describes a Standard Dropdown.
A simple class to express a naive range of whole positive numbers.