19 declare(strict_types=1);
49 'il_dcl_field_prop' => [],
50 'il_dcl_sel_opts' => [],
51 'il_dcl_record' => [],
52 'il_dcl_record_field' => [],
53 'il_dcl_stloc1_value' => [],
54 'il_dcl_stloc2_value' => [],
55 'il_dcl_stloc3_value' => [],
56 'il_dcl_stloc1_default' => [],
57 'il_dcl_stloc2_default' => [],
58 'il_dcl_stloc3_default' => [],
59 'il_dcl_tfield_set' => [],
60 'il_dcl_tableview' => [],
61 'il_dcl_tview_set' => [],
80 $this->db = $DIC->database();
81 $this->
user = $DIC->user();
87 return [
'4.5.0',
'8.13'];
94 public function getCache(
string $a_entity): array
96 if (!in_array($a_entity, array_keys($this->caches))) {
97 throw new ilException(
"Entity '$a_entity' does not exist in Cache");
100 return $this->caches[$a_entity];
103 protected function getXmlNamespace(
string $a_entity,
string $a_schema_version): string
105 return 'https://www.ilias.de/xml/Modules/DataCollection/' . $a_entity;
113 string $a_schema_version
115 foreach ($a_rec as $key => &$value) {
116 $array = json_decode($value,
true);
117 if (is_array($array)) {
120 $value = $this->
refinery->encode()->htmlSpecialCharsAsEntities()->transform($value);
125 if ($new_id = $a_mapping->
getMapping(
'components/ILIAS/Container',
'objs', $a_rec[
'id'])) {
129 $new_obj->create(
true);
131 $new_obj->setTitle($a_rec[
'title']);
132 $new_obj->setDescription($a_rec[
'description']);
133 $new_obj->setApproval((
bool) $a_rec[
'approval']);
134 $new_obj->setPublicNotes((
bool) $a_rec[
'public_notes']);
135 $new_obj->setNotification((
bool) $a_rec[
'notification']);
136 $new_obj->setPublicNotes((
bool) $a_rec[
'public_notes']);
137 $new_obj->setOnline(
false);
138 $new_obj->setRating((
bool) $a_rec[
'rating']);
140 $this->import_dc_object = $new_obj;
141 $a_mapping->
addMapping(
'components/ILIAS/DataCollection',
'dcl', $a_rec[
'id'], (
string) $new_obj->getId());
143 'components/ILIAS/MetaData',
145 $a_rec[
'id'] .
':0:dcl',
146 $new_obj->getId() .
':0:dcl' 151 $table->setTitle($a_rec[
'title']);
152 $table->setObjId($this->import_dc_object->getId());
153 $table->setDescription($a_rec[
'description']);
154 $table->setAddPerm((
bool) $a_rec[
'add_perm']);
155 $table->setEditPerm((
bool) $a_rec[
'edit_perm']);
156 $table->setDeletePerm((
bool) $a_rec[
'delete_perm']);
157 $table->setEditByOwner((
bool) $a_rec[
'edit_by_owner']);
158 $table->setLimited((
bool) $a_rec[
'limited']);
159 $table->setLimitStart($a_rec[
'limit_start']);
160 $table->setLimitEnd($a_rec[
'limit_end']);
161 $table->setIsVisible((
bool) $a_rec[
'is_visible']);
162 $table->setExportEnabled((
bool) $a_rec[
'export_enabled']);
163 $table->setImportEnabled((
bool) $a_rec[
'import_enabled']);
164 $table->setDefaultSortField($a_rec[
'default_sort_field_id']);
165 $table->setDefaultSortFieldOrder($a_rec[
'default_sort_field_order']);
166 $table->setPublicCommentsEnabled((
bool) $a_rec[
'public_comments']);
167 $table->setViewOwnRecordsPerm((
bool) $a_rec[
'view_own_records_perm']);
168 $table->setDeleteByOwner((
bool) $a_rec[
'delete_by_owner']);
169 $table->setSaveConfirmation((
bool) $a_rec[
'save_confirmation']);
170 $table->setOrder((
int) $a_rec[
'table_order']);
171 $table->doCreate(
false,
false);
172 $a_mapping->
addMapping(
'components/ILIAS/DataCollection',
'il_dcl_table', $a_rec[
'id'], (
string) $table->getId());
174 case 'il_dcl_tableview':
175 $new_table_id = $a_mapping->
getMapping(
'components/ILIAS/DataCollection',
'il_dcl_table', $a_rec[
'table_id']);
178 $tableview->setTitle($a_rec[
'title']);
179 $tableview->setTableId((
int) $new_table_id);
180 $tableview->setDescription($a_rec[
'description']);
181 $tableview->setTableviewOrder((
int) $a_rec[
'tableview_order']);
182 if (!is_array($a_rec[
'roles'])) {
183 $a_rec[
'roles'] = json_decode($a_rec[
'roles']);
185 $tableview->setRoles($a_rec[
'roles']);
186 $tableview->create(
false);
189 'components/ILIAS/DataCollection',
192 (
string) $tableview->getId()
194 $a_mapping->
addMapping(
'components/ILIAS/COPage',
'pg',
'dclf:' . $a_rec[
'id'],
'dclf:' . $tableview->getId());
198 $new_table_id = (
int) $a_mapping->
getMapping(
'components/ILIAS/DataCollection',
'il_dcl_table', $a_rec[
'table_id']);
199 if ($new_table_id > 0) {
200 $datatype_id = (
int) $a_rec[
'datatype_id'];
201 $datatype = $a_rec[
'datatype_title'] ??
null;
205 foreach ($datatypes as $dt) {
206 if ($dt->getTitle() === $datatype) {
207 $datatype_id = $dt->getId();
211 if (in_array($datatype_id, array_keys($datatypes))) {
213 $field->setTableId($new_table_id);
214 $field->setDatatypeId($datatype_id);
215 $field->setTitle($a_rec[
'title']);
216 $field->setDescription($a_rec[
'description']);
217 $field->setUnique((
bool) $a_rec[
'is_unique']);
219 $a_mapping->
addMapping(
'components/ILIAS/DataCollection',
'il_dcl_field', $a_rec[
'id'], $field->getId());
222 if ($table->getDefaultSortField() === (
int) $a_rec[
'id']) {
223 $table->setDefaultSortField($field->getId());
229 case 'il_dcl_tfield_set':
230 $new_table_id = (
int) $a_mapping->
getMapping(
'components/ILIAS/DataCollection',
'il_dcl_table', $a_rec[
'table_id']);
231 $new_field_id = $a_mapping->
getMapping(
'components/ILIAS/DataCollection',
'il_dcl_field', $a_rec[
'field']);
232 if ($new_table_id > 0 && $new_field_id > 0) {
237 $setting->setFieldOrder((
int) $a_rec[
'field_order']);
238 $setting->setExportable((
bool) $a_rec[
'exportable']);
242 case 'il_dcl_tview_set':
244 'components/ILIAS/DataCollection',
246 $a_rec[
'tableview_id']
248 $new_field_id = $a_mapping->
getMapping(
'components/ILIAS/DataCollection',
'il_dcl_field', $a_rec[
'field']);
249 if ($new_tableview_id) {
251 $setting->setTableviewId((
int) $new_tableview_id);
252 $setting->setVisible((
bool) $a_rec[
'visible']);
253 $setting->setField($new_field_id ?: $a_rec[
'field']);
254 $setting->setInFilter((
bool) $a_rec[
'in_filter']);
255 $setting->setFilterValue($a_rec[
'filter_value'] ?:
null);
256 $setting->setFilterChangeable((
bool) $a_rec[
'filter_changeable']);
257 $setting->setRequiredCreate((
bool) ($a_rec[
'required_create'] ??
false));
258 $setting->setLockedCreate((
bool) ($a_rec[
'locked_create'] ??
false));
259 $setting->setVisibleCreate((
bool) ($a_rec[
'visible_create'] ??
true));
260 $setting->setVisibleEdit((
bool) ($a_rec[
'visible_edit'] ??
true));
261 $setting->setRequiredEdit((
bool) ($a_rec[
'required_edit'] ??
false));
262 $setting->setLockedEdit((
bool) ($a_rec[
'locked_edit'] ??
false));
263 $setting->setDefaultValue($a_rec[
'default_value'] ?? null);
266 'components/ILIAS/DataCollection',
269 (
string) $setting->getId()
273 case 'il_dcl_record':
274 $new_table_id = $a_mapping->
getMapping(
'components/ILIAS/DataCollection',
'il_dcl_table', $a_rec[
'table_id']);
277 $record->setTableId((
int) $new_table_id);
281 $record->setOwner($this->
user->getId());
282 $record->setLastEditBy($this->
user->getId());
285 'components/ILIAS/DataCollection',
288 (
string) $record->getId()
293 $new_table_id = $a_mapping->
getMapping(
'components/ILIAS/DataCollection',
'il_dcl_table', $a_rec[
'table_id']);
298 if ($a_rec[
'type'] == 0 && $a_rec[
'formtype'] == 0) {
301 'components/ILIAS/COPage',
303 'dclf:' . $a_rec[
'id'],
304 'dclf:' . $tableview->getId()
307 'components/ILIAS/DataCollection',
310 (
string) $tableview->getId()
314 'components/ILIAS/DataCollection',
317 json_encode([
'type' => $a_rec[
'type'],
318 'table_id' => $new_table_id,
319 'tableview_id' => $tableview->getId()
325 case 'il_dcl_viewdefinition':
326 $map = $a_mapping->
getMapping(
'components/ILIAS/DataCollection',
'il_dcl_view', $a_rec[
'view_id']);
327 $new_field_id = $a_mapping->
getMapping(
'components/ILIAS/DataCollection',
'il_dcl_field', $a_rec[
'field']);
328 $field = ($new_field_id) ?: $a_rec[
'field'];
329 switch ($map[
'type']) {
332 $viewfield_setting->setVisible($a_rec[
'is_set']);
333 $viewfield_setting->store();
337 $viewfield_setting->setInFilter($a_rec[
'is_set']);
338 $viewfield_setting->store();
342 $tablefield_setting->setExportable($a_rec[
'is_set']);
343 $tablefield_setting->setFieldOrder($a_rec[
'field_order']);
344 $tablefield_setting->store();
348 case 'il_dcl_sel_opts':
349 $new_field_id = $a_mapping->
getMapping(
'components/ILIAS/DataCollection',
'il_dcl_field', $a_rec[
'field_id']);
352 $opt->setFieldId((
int) $new_field_id);
353 $opt->setOptId((
int) $a_rec[
'opt_id']);
354 $opt->setSorting((
int) $a_rec[
'sorting']);
355 $opt->setValue($a_rec[
'value']);
359 case 'il_dcl_field_prop':
360 $new_field_id = $a_mapping->
getMapping(
'components/ILIAS/DataCollection',
'il_dcl_field', $a_rec[
'field_id']);
363 $prop->setFieldId((
int) $new_field_id);
366 $name = $a_rec[
'name'];
367 if (!isset($name) && isset($a_rec[
'datatype_prop_id'])) {
374 6 =>
'reference_link',
377 9 =>
'learning_progress',
378 10 =>
'ILIAS_reference_link',
379 11 =>
'multiple_selection',
381 13 =>
'display_action_menu',
382 14 =>
'link_detail_page',
383 15 =>
'link_detail_page',
386 $name = $properties[$a_rec[
'datatype_prop_id']];
389 $prop->setName($name);
390 $prop->setValue($a_rec[
'value']);
393 'components/ILIAS/DataCollection',
396 (
string) $prop->getId()
398 $this->import_temp_refs_props[$prop->getId()] = $a_rec[
'value'];
401 case 'il_dcl_record_field':
402 $record_id = $a_mapping->
getMapping(
'components/ILIAS/DataCollection',
'il_dcl_record', $a_rec[
'record_id']);
403 $field_id = $a_mapping->
getMapping(
'components/ILIAS/DataCollection',
'il_dcl_field', $a_rec[
'field_id']);
404 if ($record_id && $field_id) {
409 'components/ILIAS/DataCollection',
410 'il_dcl_record_field',
412 (
string) $record_field->getId()
414 $this->import_record_field_cache[$record_field->getId()] = $record_field;
417 case 'il_dcl_stloc1_value':
418 case 'il_dcl_stloc2_value':
419 case 'il_dcl_stloc3_value':
420 $new_record_field_id = $a_mapping->
getMapping(
421 'components/ILIAS/DataCollection',
422 'il_dcl_record_field',
423 $a_rec[
'record_field_id']
425 if ($new_record_field_id) {
427 $record_field = $this->import_record_field_cache[$new_record_field_id];
428 if (is_object($record_field)) {
431 switch ($record_field->getField()->getDatatypeId()) {
434 $new_mob_id = $a_mapping->
getMapping(
'components/ILIAS/MediaObjects',
'mob', $a_rec[
'value']);
435 $value = ($new_mob_id) ? (
int) $new_mob_id :
null;
436 $this->import_temp_new_mob_ids[] = $new_mob_id;
439 $new_file_id = $a_mapping->
getMapping(
'components/ILIAS/File',
'file', $a_rec[
'value']);
440 $value = ($new_file_id) ? (
int) $new_file_id :
null;
444 $value = $a_rec[
'value'];
445 $decode = json_decode($a_rec[
'value']);
446 if (is_array($decode)) {
447 foreach ($decode as
$id) {
448 $this->import_temp_refs[$new_record_field_id][] =
$id;
451 $this->import_temp_refs[$new_record_field_id] = $value;
458 $value = $a_rec[
'value'];
459 if ($value ==
'0000-00-00 00:00:00') {
464 if (version_compare($a_schema_version,
"8.13") < 0) {
465 $a_rec[
'value'] = str_replace(
'<br />',
'', $a_rec[
'value']);
469 $value = $a_rec[
'value'];
470 if ($a_entity ==
'il_dcl_stloc3_value' && empty($value)) {
474 $record_field->setValue($value,
true);
475 $record_field->doUpdate();
479 case 'il_dcl_stloc1_default':
480 case 'il_dcl_stloc2_default':
481 case 'il_dcl_stloc3_default':
484 'components/ILIAS/DataCollection',
486 $a_rec[
'tview_set_id']
490 $value = $a_rec[
'value'];
494 $value = (
int) $value;
496 $stloc_default->setValue($value);
497 $stloc_default->setTviewSetId((
int) $tview_set_id);
498 $stloc_default->create();
508 foreach ($array as $key => $value) {
510 if (is_string($key)) {
511 $newkey = $this->
refinery->encode()->htmlSpecialCharsAsEntities()->transform($key);
514 if (is_string($value)) {
515 $newvalue = $this->
refinery->encode()->htmlSpecialCharsAsEntities()->transform($value);
517 if (is_array($value)) {
520 $new[$newkey] = $newvalue;
531 foreach ($this->import_temp_new_mob_ids as $new_mob_id) {
536 foreach ($this->import_temp_refs as $record_field_id => $old_record_id) {
537 if (is_array($old_record_id)) {
539 foreach ($old_record_id as
$id) {
540 $new_record_id[] = $a_mapping->
getMapping(
'components/ILIAS/DataCollection',
'il_dcl_record', $id);
542 $value = $new_record_id;
544 $value = $a_mapping->
getMapping(
'components/ILIAS/DataCollection',
'il_dcl_record', $old_record_id);
547 $record_field = $this->import_record_field_cache[$record_field_id];
548 $record_field->setValue($value,
true);
549 $record_field->doUpdate();
551 foreach ($this->import_temp_refs_props as $field_prop_id => $prop_value) {
552 $new_field_id = $a_mapping->
getMapping(
'components/ILIAS/DataCollection',
'il_dcl_field', $prop_value);
553 $value = ($new_field_id) ? (
int) $new_field_id : $prop_value;
556 $field_prop->setValue($value);
557 $field_prop->update();
564 protected function getTypes(
string $a_entity,
string $a_version): array
571 "description" =>
"text",
572 'is_online' =>
'integer',
573 'rating' =>
'integer',
574 'public_notes' =>
'integer',
575 'approval' =>
'integer',
576 'notification' =>
'integer',
581 'obj_id' =>
'integer',
583 'add_perm' =>
'integer',
584 'edit_perm' =>
'integer',
585 'delete_perm' =>
'integer',
586 'edit_by_owner' =>
'integer',
587 'limited' =>
'integer',
588 'limit_start' =>
'text',
589 'limit_end' =>
'text',
590 'is_visible' =>
'integer',
591 'export_enabled' =>
'integer',
592 'import_enabled' =>
'integer',
593 'default_sort_field_id' =>
'text',
594 'default_sort_field_order' =>
'text',
595 'description' =>
'text',
596 'public_comments' =>
'integer',
597 'view_own_records_perm' =>
'integer',
598 'delete_by_owner' =>
'integer',
599 'save_confirmation' =>
'integer',
600 'table_order' =>
'integer',
602 case 'il_dcl_tableview':
605 'table_id' =>
'integer',
608 'description' =>
'text',
609 'tableview_order' =>
'integer',
614 'table_id' =>
'integer',
616 'description' =>
'text',
617 'datatype_id' =>
'integer',
618 'datatype_title' =>
'text',
619 'is_unique' =>
'integer',
621 case 'il_dcl_tview_set':
624 'tableview_id' =>
'integer',
626 'visible' =>
'integer',
627 'in_filter' =>
'integer',
628 'filter_value' =>
'text',
629 'filter_changeable' =>
'integer',
630 'required_create' =>
'integer',
631 'required_edit' =>
'integer',
632 'locked_create' =>
'integer',
633 'locked_edit' =>
'integer',
634 'visible_create' =>
'integer',
635 'visible_edit' =>
'integer',
636 'default_value' =>
'text',
638 case 'il_dcl_tfield_set':
641 'table_id' =>
'integer',
643 'field_order' =>
'integer',
644 'exportable' =>
'integer',
646 case 'il_dcl_field_prop':
649 'field_id' =>
'integer',
651 'value' =>
'integer',
653 case 'il_dcl_sel_opts':
656 'field_id' =>
'integer',
657 'opt_id' =>
'integer',
658 'sorting' =>
'integer',
661 case 'il_dcl_record':
664 'table_id' =>
'integer',
666 case 'il_dcl_record_field':
669 'record_id' =>
'integer',
670 'field_id' =>
'integer',
672 case 'il_dcl_stloc1_value':
673 case 'il_dcl_stloc2_value':
674 case 'il_dcl_stloc3_value':
677 'record_field_id' =>
'integer',
680 case 'il_dcl_stloc1_default':
681 case 'il_dcl_stloc2_default':
682 case 'il_dcl_stloc3_default':
685 'tview_set_id' =>
'integer',
704 ?array $a_rec =
null,
707 if (!$a_rec && !$a_ids) {
712 $set = $this->db->query(
'SELECT * FROM il_dcl_table WHERE obj_id = ' . $this->db->quote(
716 $ids = $this->
buildCache(
'il_dcl_table', $set);
719 'il_dcl_table' => [
'ids' => $ids],
722 $set = $this->db->query(
'SELECT * FROM il_dcl_record WHERE table_id = ' . $this->db->quote(
726 $ids_records = $this->
buildCache(
'il_dcl_record', $set);
727 $set = $this->db->query(
'SELECT il_dcl_field.*, il_dcl_datatype.title as datatype_title FROM il_dcl_field INNER JOIN il_dcl_datatype ON il_dcl_field.datatype_id = il_dcl_datatype.id WHERE table_id = ' . $this->db->quote(
731 $ids_fields = $this->
buildCache(
'il_dcl_field', $set);
732 $set = $this->db->query(
'SELECT * FROM il_dcl_tableview WHERE table_id = ' . $this->db->quote(
736 $ids_tableviews = $this->
buildCache(
'il_dcl_tableview', $set);
737 $set = $this->db->query(
'SELECT * FROM il_dcl_tfield_set WHERE table_id = ' . $this->db->quote(
741 $ids_tablefield_settings = $this->
buildCache(
'il_dcl_tfield_set', $set);
744 'il_dcl_field' => [
'ids' => $ids_fields],
745 'il_dcl_record' => [
'ids' => $ids_records],
746 'il_dcl_tableview' => [
'ids' => $ids_tableviews],
747 'il_dcl_tfield_set' => [
'ids' => $ids_tablefield_settings],
750 $set = $this->db->query(
'SELECT * FROM il_dcl_field_prop WHERE field_id = ' . $this->db->quote(
754 $prop_ids = $this->
buildCache(
'il_dcl_field_prop', $set);
756 $set = $this->db->query(
'SELECT * FROM il_dcl_sel_opts WHERE field_id = ' . $this->db->quote(
760 $opt_ids = $this->
buildCache(
'il_dcl_sel_opts', $set);
763 'il_dcl_field_prop' => [
'ids' => $prop_ids],
764 'il_dcl_sel_opts' => [
'ids' => $opt_ids],
766 case 'il_dcl_record':
767 $sql =
'SELECT rf.*, d.storage_location FROM il_dcl_record_field AS rf' .
' INNER JOIN il_dcl_field AS f ON (f.id = rf.field_id)' 768 .
' INNER JOIN il_dcl_datatype AS d ON (f.datatype_id = d.id) ' .
' WHERE rf.record_id = ' 769 . $this->db->quote($a_rec[
'id'],
'integer');
770 $set = $this->db->query($sql);
771 $ids = $this->
buildCache(
'il_dcl_record_field', $set);
773 $set = $this->db->query($sql);
774 while ($rec = $this->db->fetchObject($set)) {
779 =
'SELECT rf.id AS record_field_id, st1.value AS value1, st2.value AS value2, st3.value AS value3 FROM il_dcl_record_field AS rf ' 780 .
'LEFT JOIN il_dcl_stloc1_value AS st1 ON (st1.record_field_id = rf.id) ' 781 .
'LEFT JOIN il_dcl_stloc2_value AS st2 ON (st2.record_field_id = rf.id) ' 782 .
'LEFT JOIN il_dcl_stloc3_value AS st3 ON (st3.record_field_id = rf.id) ' .
'WHERE rf.record_id = ' 783 . $this->db->quote($a_rec[
'id'],
'integer');
784 $set = $this->db->query($sql);
786 while ($rec = $this->db->fetchObject($set)) {
787 $stloc = $this->record_field_ids_2_storage[$rec->record_field_id];
790 $value =
"value$stloc";
791 $value = $rec->{$value};
794 $this->caches[
"il_dcl_stloc{$stloc}_value"][$rec->record_field_id] = [
795 'record_field_id' => $rec->record_field_id,
801 'il_dcl_record_field' => [
'ids' => $ids],
803 case 'il_dcl_tableview':
804 $set = $this->db->query(
'SELECT * FROM il_dcl_tview_set WHERE tableview_id = ' . $this->db->quote(
808 $ids = $this->
buildCache(
'il_dcl_tview_set', $set);
811 'il_dcl_tview_set' => [
'ids' => $ids],
813 case 'il_dcl_tview_set':
815 if (!(
int) $a_rec[
'field'] > 0) {
821 SELECT tview_set.id AS tview_set_id, st1.value AS value1, st2.value AS value2, st3.value AS value3, 822 st1.id AS id1, st2.id AS id2, st3.id AS id3 823 FROM il_dcl_tview_set AS tview_set 824 LEFT JOIN il_dcl_stloc1_default AS st1 ON (st1.tview_set_id = tview_set.id) 825 LEFT JOIN il_dcl_stloc2_default AS st2 ON (st2.tview_set_id = tview_set.id) 826 LEFT JOIN il_dcl_stloc3_default AS st3 ON (st3.tview_set_id = tview_set.id) 827 WHERE tview_set.id = ' . $this->db->quote($a_rec[
'id'],
'integer');
828 $set = $this->db->query($sql);
830 while ($rec = $this->db->fetchObject($set)) {
833 $value_str =
"value$stloc";
834 $value = $rec->{$value_str};
835 $id_str =
"id$stloc";
836 $id = $rec->{$id_str};
837 $tview_set_id = $rec->tview_set_id;
840 $this->caches[
"il_dcl_stloc" .
"$stloc" .
"_default"][$rec->tview_set_id] = [
842 'tview_set_id' => $rec->tview_set_id,
847 "il_dcl_stloc{$stloc}_default" => [
'ids' => [$tview_set_id]],
852 case 'il_dcl_record_field':
853 $record_field_id = $a_rec[
'id'];
854 $storage_loc = $this->record_field_ids_2_storage[$record_field_id];
857 "il_dcl_stloc{$storage_loc}_value" => [
'ids' => [$record_field_id]],
868 public function readData(
string $a_entity,
string $a_version, array $a_ids): void
879 protected function _readData(
string $a_entity, array $a_ids): void
883 foreach ($a_ids as $dcl_id) {
888 'title' => $obj->getTitle(),
889 'description' => $obj->getDescription(),
890 'is_online' => $obj->getOnline(),
891 'rating' => $obj->getRating(),
892 'public_notes' => $obj->getPublicNotes(),
893 'approval' => $obj->getApproval(),
894 'notification' => $obj->getNotification(),
896 $this->caches[
'dcl'][$dcl_id] =
$data;
897 $this->data[] =
$data;
903 foreach ($a_ids as
$id) {
911 $fields = array_keys($this->
getTypes($a_entity,
''));
913 while ($rec = $this->db->fetchObject($set)) {
915 foreach ($fields as $field) {
916 $data[$field] = $rec->{$field};
919 $this->caches[$a_entity][
$id] =
$data;
ILIAS Refinery Factory $refinery
getXmlNamespace(string $a_entity, string $a_schema_version)
static createOrGetStandardView(int $table_id)
getTypes(string $a_entity, string $a_version)
Map XML attributes of entities to datatypes (text, integer...)
static returnDbTableName()
buildCache(string $a_entity, ilDBStatement $set)
static getFieldCache(int $field_id=0)
const INPUTFORMAT_REFERENCELIST
static isPluginDatatype(string $datatype)
array $import_record_field_cache
Caches ilDclBaseRecordFieldModel objects.
addMapping(string $a_comp, string $a_entity, string $a_old_id, string $a_new_id)
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
static getInstance(int $tableview_id, int $field_id)
getMapping(string $a_comp, string $a_entity, string $a_old_id)
readData(string $a_entity, string $a_version, array $a_ids)
Read data from Cache for a given entity and ID(s)
static getAllDatatype(bool $force=false)
Get all possible Datatypes.
getCache(string $a_entity)
Get cached data from a given entity.
importRecord(string $a_entity, array $a_types, array $a_rec, ilImportMapping $a_mapping, string $a_schema_version)
Needs to be overwritten for import use case.
array $import_temp_new_mob_ids
static getTableCache(?int $table_id=null)
const INPUTFORMAT_DATETIME
const INPUTFORMAT_ILIAS_REF
array ilObjDataCollection $import_dc_object
_readData(string $a_entity, array $a_ids)
Build data array, data is read from cache except dcl object itself.
static getInstance(int $table_id, string $field)
const INPUTFORMAT_REFERENCE
static getInstanceByObjId(?int $obj_id, bool $stop_on_error=true)
get an instance of an Ilias object by object id
static getRecordCache(?int $record_id)
const INPUTFORMAT_FILEUPLOAD
$id
plugin.php for ilComponentBuildPluginInfoObjectiveTest::testAddPlugins
__construct(Container $dic, ilPlugin $plugin)
getDependencies(string $a_entity, string $a_version, ?array $a_rec=null, ?array $a_ids=null)
Return dependencies form entities to other entities (in our case these are all the DB relations) ...
escapeArray(array $array)
array $import_temp_refs_props
array $record_field_ids_2_storage
static _lookupType(int $id, bool $reference=false)