19 declare(strict_types=1);
34 protected \ilLanguage
$lng;
37 protected Data\Factory
$df;
45 $this->
ctrl = $DIC->ctrl();
46 $this->
lng = $DIC->language();
47 $this->ui_fac = $DIC->ui()->factory();
48 $this->request = $DIC->http()->request();
49 $this->df =
new Data\Factory();
50 $this->
user = $DIC->user();
60 $table = $this->ui_fac->table()
61 ->data($data_retrieval, $this->
lng->txt(
"download"), $columns)
64 $this->glossary->getRefId()
66 ->withActions($actions)
67 ->withRequest($this->request);
75 $date_format = $this->df->dateFormat()->withTime12($this->
user->getDateFormat());
77 $date_format = $this->df->dateFormat()->withTime24($this->
user->getDateFormat());
81 "format" => $this->ui_fac->table()->column()->text($this->
lng->txt(
"cont_format"))->withIsSortable(
false),
82 "file" => $this->ui_fac->table()->column()->text($this->
lng->txt(
"cont_file"))->withIsSortable(
false),
83 "size" => $this->ui_fac->table()->column()->number($this->
lng->txt(
"size"))->withIsSortable(
false),
84 "date" => $this->ui_fac->table()->column()->date(
85 $this->
lng->txt(
"date"),
87 )->withIsSortable(
false),
95 $query_params_namespace = [
"glo_download_list_table"];
97 $uri_download = $this->df->uri(
98 ILIAS_HTTP_PATH .
"/" . $this->
ctrl->getLinkTargetByClass(
"ilglossarypresentationgui",
"downloadExportFile")
100 $url_builder_download =
new UI\URLBuilder($uri_download);
101 list($url_builder_download, $action_parameter_token_download, $row_id_token_download) =
102 $url_builder_download->acquireParameters(
103 $query_params_namespace,
108 $actions[
"download"] = $this->ui_fac->table()->action()->single(
109 $this->
lng->txt(
"download"),
110 $url_builder_download->withParameter($action_parameter_token_download,
"downloadExportFile"),
111 $row_id_token_download
119 $data_retrieval =
new class (
131 public function getRows(
133 array $visible_column_ids,
137 ?array $additional_parameters
139 $records = $this->getRecords($range);
140 foreach ($records as $idx => $record) {
141 $row_id = (string) $record[
"file_id"];
143 yield $row_builder->buildDataRow($row_id, $record);
147 public function getTotalRowCount(
149 ?array $additional_parameters
151 return count($this->getRecords());
154 protected function getRecords(?
Data\
Range $range =
null): array
157 $types = [
"xml",
"html"];
158 foreach ($types as $type) {
159 $pe_file = $this->glossary->getPublicExportFile($type);
160 if ($pe_file !=
"") {
161 $dir = $this->glossary->getExportDirectory($type);
162 if (is_file($dir .
"/" . $pe_file)) {
163 $size = filesize($dir .
"/" . $pe_file);
175 foreach ($export_files as $exp_file) {
176 $records[$i][
"file_id"] = $exp_file[
"type"] .
":" . $exp_file[
"file"];
177 $records[$i][
"format"] = strtoupper($exp_file[
"type"]);
178 $records[$i][
"file"] = $exp_file[
"file"];
179 $records[$i][
"size"] = $exp_file[
"size"];
180 $file_arr = explode(
"__", $exp_file[
"file"]);
181 $records[$i][
"date"] = (new \DateTimeImmutable())->setTimestamp((
int) $file_arr[0]);
187 $records = $this->limitRecords($records, $range);
194 return $data_retrieval;
ServerRequestInterface $request
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
Both the subject and the direction need to be specified when expressing an order. ...
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
__construct(\ilObjGlossary $glossary)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
A simple class to express a naive range of whole positive numbers.