19 declare(strict_types=1);
43 protected string $mode = self::MODE_VIEW;
57 protected \ILIAS\ResourceStorage\Services
$irss;
67 $this->
ctrl = $DIC->ctrl();
68 $this->
toolbar = $DIC->toolbar();
69 $this->
lng = $DIC->language();
70 $this->
tabs = $DIC->tabs();
71 $this->
http = $DIC->http();
73 $this->irss = $DIC->resourceStorage();
74 $this->
access = $DIC->access();
75 $this->tpl = $DIC->ui()->mainTemplate();
76 $this->ui_factory = $DIC->ui()->factory();
77 $this->
renderer = $DIC->ui()->renderer();
82 $this->obj_id = $a_parent_obj->
getObject()->getId();
83 $this->parent_obj = $a_parent_obj;
86 $this->
ctrl->setParameterByClass(ilDclRecordEditGUI::class, self::GET_TABLE_ID, $this->table_id);
87 $this->
ctrl->setParameterByClass(ilDclRecordEditGUI::class, self::GET_TABLEVIEW_ID, $this->tableview_id);
88 $this->
ctrl->setParameterByClass(ilDclDetailedViewGUI::class, self::GET_TABLEVIEW_ID, $this->tableview_id);
90 $this->mode = self::MODE_VIEW;
92 if ($this->
http->wrapper()->query()->has(self::GET_MODE)) {
93 $mode = $this->
http->wrapper()->query()->retrieve(self::GET_MODE, $this->
refinery->kindlyTo()->string());
94 if (in_array($mode, self::$available_modes,
true)) {
102 return $this->parent_obj->getRefId();
107 return $this->parent_obj->getObject()->getId();
117 $this->tpl->setOnScreenMessage(
'failure', $this->
lng->txt(
'permission_denied'),
true);
121 $this->
ctrl->saveParameter($this, self::GET_MODE);
122 $cmd = $this->
ctrl->getCmd(self::CMD_SHOW);
131 case self::CMD_CANCEL_DELETE:
132 case self::CMD_LIST_RECORDS:
136 case self::CMD_CONFIRM_DELETE_RECORDS:
137 $this->confirmDeleteRecords();
139 case self::CMD_DELETE_RECORDS:
140 $this->deleteRecords();
142 case self::CMD_SHOW_IMPORT_EXCEL:
143 $this->
tabs->setBackTarget($this->
lng->txt(
'back'), $this->
ctrl->getLinkTarget($this));
153 public function listRecords(
bool $use_tableview_filter =
false): void
160 $this->parent_obj->getRefId(),
162 ) && $this->table_obj->hasCustomFields();
163 if ($permission_to_add_or_import) {
164 $this->
ctrl->setParameterByClass(ilDclRecordEditGUI::class,
"record_id",
null);
166 $add_new = $this->ui_factory->button()->primary(
167 $this->
lng->txt(
"dcl_add_new_record"),
168 $this->
ctrl->getFormActionByClass(ilDclRecordEditGUI::class,
"create")
170 $this->
toolbar->addStickyItem($add_new);
173 if ($permission_to_add_or_import && $this->table_obj->getImportEnabled()) {
174 $this->
ctrl->setParameterByClass(ilDclRecordEditGUI::class,
"record_id",
null);
176 $import_button = $this->ui_factory->button()->standard(
177 $this->
lng->txt(
"dcl_import_records .xls"),
178 $this->
ctrl->getFormActionByClass(ilDclRecordListGUI::class, self::CMD_SHOW_IMPORT_EXCEL)
180 $this->
toolbar->addComponent($import_button);
183 if (count($this->table_obj->getRecordFields()) == 0) {
184 $message = $this->
lng->txt(
"dcl_no_fields_yet") .
" " 186 $this->parent_obj->getRefId(),
188 ) ? $this->
lng->txt(
"dcl_create_fields") :
"");
189 $this->tpl->setOnScreenMessage(
'info',
$message,
true);
193 if ($this->
http->wrapper()->query()->has(
'table_id')) {
194 $target .= $this->
http->wrapper()->query()->retrieve(
'table_id', $this->
refinery->to()->string());
196 if ($this->
http->wrapper()->query()->has(
'tableview_id')) {
197 $target .=
'_' . $this->
http->wrapper()->query()->retrieve(
'tableview_id', $this->
refinery->to()->string());
200 $this->tpl->setPermanentLink(
"dcl", $this->parent_obj->getRefId(), $target);
202 if ($desc = $this->table_obj->getDescription()) {
203 $desc = $this->
refinery->string()->markdown()->toHTML()->transform($desc);
204 $desc =
'<div class="ilDclTableDescription">' . $desc .
'</div>';
206 $this->tpl->setContent($desc . $list->getHTML());
214 $this->tpl->setContent($form->getHTML());
225 $item->setHtml($this->
lng->txt(
'dcl_file_format_description'));
226 $item->setTitle(
"Info");
227 $form->addItem($item);
231 $form->addItem($file);
234 $cb->setInfo($this->
lng->txt(
"dcl_simulate_info"));
237 $form->addCommandButton(
"importExcel", $this->
lng->txt(
"import"));
248 $this->parent_obj->getRefId(),
250 )) || !$this->table_obj->getImportEnabled()) {
254 if ($form->checkInput()) {
255 $file = $form->getInput(
"import_file");
256 $file_location = $file[
"tmp_name"];
257 $simulate = $form->getInput(
"simulate");
270 $result = $importer->
import($file, $simulate);
272 $this->
endImport($result[
'line'], $result[
'warnings']);
279 public function endImport(
int $i, array $warnings): void
281 $output =
new ilTemplate(
"tpl.dcl_import_terminated.html",
true,
true,
"components/ILIAS/DataCollection");
282 $output->setVariable(
"IMPORT_TERMINATED", $this->
lng->txt(
"dcl_import_terminated") .
": " . $i);
283 foreach ($warnings as $warning) {
284 $output->setCurrentBlock(
"warnings");
285 $output->setVariable(
"WARNING", $warning);
286 $output->parseCurrentBlock();
288 if (!count($warnings)) {
289 $output->setCurrentBlock(
"warnings");
290 $output->setVariable(
"WARNING", $this->
lng->txt(
"dcl_no_warnings"));
291 $output->parseCurrentBlock();
293 $output->setVariable(
"BACK_LINK", $this->
ctrl->getLinkTargetByClass(ilDclRecordListGUI::class,
"listRecords"));
294 $output->setVariable(
"BACK", $this->
lng->txt(
"back"));
295 $this->tpl->setContent($output->get());
304 $table->initFilter();
305 $table->resetOffset();
306 $table->writeFilterToSession();
307 $this->filter_changed =
true;
317 $table->initFilter();
318 $table->resetOffset();
319 $table->resetFilter();
320 $this->filter_changed =
true;
329 $hasIlFileHash = $this->
http->wrapper()->query()->has(
'ilfilehash');
331 if ($this->
access->checkAccess(
'read',
"", $this->parent_obj->getRefId())) {
333 if ($hasIlFileHash) {
334 $filehash = $this->
http->wrapper()->query()->retrieve(
336 $this->
refinery->kindlyTo()->string()
338 $field_id = $this->
http->wrapper()->query()->retrieve(
'field_id', $this->
refinery->kindlyTo()->int());
341 $filepath = $_FILES[
"field_" . $field_id][
'tmp_name'];
342 $filetitle = $_FILES[
"field_" . $field_id][
'name'];
346 $rec_id = $this->
http->wrapper()
348 ->retrieve(
'record_id', $this->
refinery->kindlyTo()->int());
355 $field_id = $this->
http->wrapper()
357 ->retrieve(
'field_id', $this->
refinery->kindlyTo()->string());
362 $rid_string = $record->getRecordFieldValue($field_id);
363 $identification = $this->irss->manage()->find($rid_string);
364 if ($identification ===
null) {
367 $current_revision = $this->irss->manage()->getCurrentRevision($identification);
370 $this->irss->consume()
371 ->download($identification)
372 ->overrideFileName($current_revision->getTitle())
381 public function confirmDeleteRecords():
void 383 $this->
tabs->clearTargets();
386 $conf->setFormAction($this->
ctrl->getFormAction($this));
387 $conf->setHeaderText($this->
lng->txt(
'dcl_confirm_delete_records'));
389 $has_record_ids = $this->
http->wrapper()->post()->has(
'record_ids');
391 if ($has_record_ids) {
392 $record_ids = $this->
http->wrapper()->post()->retrieve(
397 $all_fields = $this->table_obj->getRecordFields();
398 foreach ($record_ids as $record_id) {
402 foreach ($all_fields as $field) {
406 if ($record_representation->getConfirmationHTML() !=
false) {
407 $record_data .= $field->getTitle() .
": " . $record_representation->getConfirmationHTML() .
"<br />";
410 $conf->addItem(
'record_ids[]', (
string) $record->getId(), $record_data);
412 $conf->addHiddenItem(
'table_id', (
string) $this->table_id);
413 $conf->setConfirm($this->
lng->txt(
'dcl_delete_records'), self::CMD_DELETE_RECORDS);
414 $conf->setCancel($this->
lng->txt(
'cancel'), self::CMD_CANCEL_DELETE);
415 $this->tpl->setContent($conf->getHTML());
421 public function deleteRecords():
void 423 $has_record_ids = $this->
http->wrapper()->post()->has(
'record_ids');
425 if ($has_record_ids) {
426 $record_ids = $this->
http->wrapper()->post()->retrieve(
434 foreach ($record_ids as $record_id) {
437 $ref_id = $this->parent_obj->getRefId();
439 if ($record->hasPermissionToDelete(
$ref_id)) {
446 $n_deleted = (count($record_ids) - $n_skipped);
449 $this->
lng->txt(
'dcl_deleted_records'),
452 $this->tpl->setOnScreenMessage(
'success',
$message,
true);
456 $this->
lng->txt(
'dcl_skipped_delete_records'),
459 $this->tpl->setOnScreenMessage(
'info',
$message,
true);
461 $this->
ctrl->redirect($this, self::CMD_LIST_RECORDS);
467 $obj_id = $this->parent_obj->object->getId();
468 $obj_id_rec = $table->getCollectionObject()->getId();
470 return $obj_id == $obj_id_rec;
473 protected function setSubTabs(
string $active_mode = self::GET_MODE): void
475 $this->
ctrl->setParameter($this, self::GET_MODE, self::MODE_VIEW);
476 $this->
tabs->addSubTab(
478 $this->
lng->txt(
'view'),
479 $this->
ctrl->getLinkTarget($this, self::CMD_LIST_RECORDS)
482 $ref_id = $this->
http->wrapper()->query()->retrieve(
'ref_id', $this->
refinery->kindlyTo()->int());
483 if ($this->table_obj->hasPermissionToDeleteRecords(
$ref_id)) {
484 $this->
ctrl->setParameter($this, self::GET_MODE, self::MODE_MANAGE);
485 $this->
tabs->addSubTab(
487 $this->
lng->txt(
'dcl_manage'),
488 $this->
ctrl->getLinkTarget($this, self::CMD_LIST_RECORDS)
491 $this->
tabs->activateSubTab($active_mode);
492 $this->
ctrl->clearParameters($this);
501 if ($use_tableview_filter) {
503 $list->resetOffset();
504 $list->resetFilter();
505 $list->initFilterFromTableView();
508 $list->setExternalSegmentation(
true);
509 $list->setExternalSorting(
true);
510 $list->determineOffsetAndOrder();
512 if ($this->filter_changed) {
513 $list->resetOffset();
516 $limit = $list->getLimit();
517 $offset = $list->getOffset();
521 $list->getOrderField(),
522 $list->getOrderDirection(),
527 $records =
$data[
'records'];
528 $total =
$data[
'total'];
530 $list->setMaxCount($total);
531 $list->setRecordData($records);
533 $list->determineOffsetAndOrder();
534 $list->determineLimit();
542 $tables = $this->parent_obj->object->getTables();
544 $tables = $this->parent_obj->object->getVisibleTables();
548 $switcher->addTableSwitcherToToolbar(
554 $switcher->addViewSwitcherToToolbar(
555 $this->table_obj->getVisibleTableViews($this->parent_obj->getRefId()),
564 if (
null === $this->table_id ||
null === $this->tableview_id) {
568 return ilObjDataCollectionAccess::hasAccessTo(
569 $this->parent_obj->getRefId(),
setSubTabs(string $active_mode=self::GET_MODE)
ilObjDataCollectionGUI $parent_obj
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
ILIAS UI Renderer $renderer
static array $available_modes
ilGlobalTemplateInterface $tpl
recordBelongsToCollection(ilDclBaseRecordModel $record)
endImport(int $i, array $warnings)
End import.
import(string $file, bool $simulate=false)
const CMD_SHOW_IMPORT_EXCEL
executeCommand()
execute command
sendFile()
send File to User
showImportExcel(?ilPropertyFormGUI $form=null)
const CMD_CONFIRM_DELETE_RECORDS
__construct(ilObjDataCollectionGUI $a_parent_obj, int $table_id, int $tableview_id)
ILIAS HTTP Services $http
getRecordListTableGUI(bool $use_tableview_filter)
static deliverFileLegacy(string $a_file, ?string $a_filename=null, ?string $a_mime=null, ?bool $isInline=false, ?bool $removeAfterDelivery=false, ?bool $a_exit_after=true)
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
static hasAccessToFields(int $ref_id, int $table_id)
ilObjDataCollectionGUI: ilInfoScreenGUI, ilNoteGUI, ilCommonActionDispatcherGUI ilObjDataCollectionG...
static http()
Fetches the global http state from ILIAS.
ILIAS Refinery Factory $refinery
getPartialRecords(string $ref_id, string $sort, string $direction, ?int $limit, int $offset, array $filter=[])
Return only the needed subset of record objects for the table, according to sorting, paging and filters.
static getTableCache(?int $table_id=null)
static getRecordRepresentation(ilDclBaseRecordFieldModel $record_field)
Returns a record representation.
static hasWriteAccess(int $ref, ?int $user_id=0)
string $mode
Stores current mode active.
ILIAS UI Factory $ui_factory
ILIAS ResourceStorage Services $irss
static getRecordCache(?int $record_id)
static hasPermissionToAddRecord(int $ref_id, int $table_id)
static getRecordFieldCache(object $record, object $field)
importExcel()
Import Data from Excel sheet.
listRecords(bool $use_tableview_filter=false)
initImportForm()
Init form.
importRecords(string $file, bool $simulate=false)
Import records from Excel file.