49 'il_dcl_table' => array(),
50 'il_dcl_field' => array(),
51 'il_dcl_field_prop' => array(),
52 'il_dcl_sel_opts' => array(),
53 'il_dcl_record' => array(),
54 'il_dcl_record_field' => array(),
55 'il_dcl_stloc1_value' => array(),
56 'il_dcl_stloc2_value' => array(),
57 'il_dcl_stloc3_value' => array(),
58 'il_dcl_tfield_set' => array(),
59 'il_dcl_tableview' => array(),
60 'il_dcl_tview_set' => array(),
110 return array(
'4.5.0');
124 if (!in_array($a_entity, array_keys($this->caches))) {
125 throw new ilException(
"Entity '$a_entity' does not exist in Cache");
128 return $this->caches[$a_entity];
140 return 'http://www.ilias.de/xml/Modules/DataCollection/' . $a_entity;
151 public function importRecord($a_entity, $a_types, $a_rec, $a_mapping, $a_schema_version)
155 if ($new_id = $a_mapping->getMapping(
'Services/Container',
'objs', $a_rec[
'id'])) {
159 $new_obj->create(
true);
161 $new_obj->setTitle($a_rec[
'title']);
162 $new_obj->setDescription($a_rec[
'description']);
163 $new_obj->setApproval($a_rec[
'approval']);
164 $new_obj->setPublicNotes($a_rec[
'public_notes']);
165 $new_obj->setNotification($a_rec[
'notification']);
166 $new_obj->setPublicNotes($a_rec[
'public_notes']);
167 $new_obj->setOnline(
false);
168 $new_obj->setRating($a_rec[
'rating']);
170 $this->import_dc_object = $new_obj;
171 $a_mapping->addMapping(
'Modules/DataCollection',
'dcl', $a_rec[
'id'], $new_obj->getId());
175 $table->setTitle($a_rec[
'title']);
176 $table->setObjId($this->import_dc_object->getId());
177 $table->setDescription($a_rec[
'description']);
178 $table->setAddPerm($a_rec[
'add_perm']);
179 $table->setEditPerm($a_rec[
'edit_perm']);
180 $table->setDeletePerm($a_rec[
'delete_perm']);
181 $table->setEditByOwner($a_rec[
'edit_by_owner']);
182 $table->setLimited($a_rec[
'limited']);
183 $table->setLimitStart($a_rec[
'limit_start']);
184 $table->setLimitEnd($a_rec[
'limit_end']);
185 $table->setIsVisible($a_rec[
'is_visible']);
186 $table->setExportEnabled($a_rec[
'export_enabled']);
187 $table->setImportEnabled($a_rec[
'import_enabled']);
188 $table->setDefaultSortField($a_rec[
'default_sort_field_id']);
189 $table->setDefaultSortFieldOrder($a_rec[
'default_sort_field_order']);
190 $table->setPublicCommentsEnabled($a_rec[
'public_comments']);
191 $table->setViewOwnRecordsPerm($a_rec[
'view_own_records_perm']);
192 $table->setDeleteByOwner($a_rec[
'delete_by_owner']);
193 $table->setSaveConfirmation($a_rec[
'save_confirmation']);
194 $table->setOrder($a_rec[
'table_order']);
195 $table->doCreate(
false,
false);
196 $a_mapping->addMapping(
'Modules/DataCollection',
'il_dcl_table', $a_rec[
'id'], $table->getId());
198 case 'il_dcl_tableview':
199 $new_table_id = $a_mapping->getMapping(
'Modules/DataCollection',
'il_dcl_table', $a_rec[
'table_id']);
202 $tableview->setTitle($a_rec[
'title']);
203 $tableview->setTableId($new_table_id);
204 $tableview->setDescription($a_rec[
'description']);
205 $tableview->setTableviewOrder($a_rec[
'tableview_order']);
206 if (!is_array($a_rec[
'roles'])) {
207 $a_rec[
'roles'] = json_decode($a_rec[
'roles']);
209 $tableview->setRoles($a_rec[
'roles']);
210 is_null($a_rec[
'step_vs']) ? $tableview->setStepVs(1) : $tableview->setStepVs($a_rec[
'step_vs']);
211 is_null($a_rec[
'step_c']) ? $tableview->setStepC(0) : $tableview->setStepC($a_rec[
'step_c']);
212 is_null($a_rec[
'step_e']) ? $tableview->setStepE(0) : $tableview->setStepE($a_rec[
'step_e']);
213 is_null($a_rec[
'step_o']) ? $tableview->setStepO(0) : $tableview->setStepO($a_rec[
'step_o']);
214 is_null($a_rec[
'step_s']) ? $tableview->setStepS(0) : $tableview->setStepS($a_rec[
'step_s']);
215 $tableview->create(
false);
217 $a_mapping->addMapping(
'Modules/DataCollection',
'il_dcl_tableview', $a_rec[
'id'], $tableview->getId());
218 $a_mapping->addMapping(
'Services/COPage',
'pg',
'dclf:' . $a_rec[
'id'],
'dclf:' . $tableview->getId());
221 $new_table_id = $a_mapping->getMapping(
'Modules/DataCollection',
'il_dcl_table', $a_rec[
'table_id']);
224 $field->setTableId($new_table_id);
225 $field->setDatatypeId($a_rec[
'datatype_id']);
226 $field->setTitle($a_rec[
'title']);
227 $field->setDescription($a_rec[
'description']);
228 $field->setUnique($a_rec[
'is_unique']);
230 $a_mapping->addMapping(
'Modules/DataCollection',
'il_dcl_field', $a_rec[
'id'], $field->getId());
233 if ($table && $table->getDefaultSortField() == $a_rec[
'id']) {
234 $table->setDefaultSortField($field->getId());
239 case 'il_dcl_tfield_set':
240 $new_table_id = $a_mapping->getMapping(
'Modules/DataCollection',
'il_dcl_table', $a_rec[
'table_id']);
241 $new_field_id = $a_mapping->getMapping(
'Modules/DataCollection',
'il_dcl_field', $a_rec[
'field']);
244 $setting->setFieldOrder($a_rec[
'field_order']);
245 $setting->setExportable($a_rec[
'exportable']);
249 case 'il_dcl_tview_set':
250 $new_tableview_id = $a_mapping->getMapping(
'Modules/DataCollection',
'il_dcl_tableview', $a_rec[
'tableview_id']);
251 $new_field_id = $a_mapping->getMapping(
'Modules/DataCollection',
'il_dcl_field', $a_rec[
'field']);
252 if ($new_tableview_id) {
254 $setting->setTableviewId($new_tableview_id);
255 $setting->setVisible($a_rec[
'visible']);
256 $setting->setField($new_field_id ? $new_field_id : $a_rec[
'field']);
257 $setting->setInFilter($a_rec[
'in_filter']);
258 $setting->setFilterValue($a_rec[
'filter_value'] ? $a_rec[
'filter_value'] : null);
259 $setting->setFilterChangeable($a_rec[
'filter_changeable']);
260 is_null($a_rec[
'required_create']) ? $setting->setRequiredCreate(0) : $setting->setRequiredCreate($a_rec[
'required_create']);
261 is_null($a_rec[
'locked_create']) ? $setting->setLockedCreate(0) : $setting->setLockedCreate($a_rec[
'locked_create']);
262 is_null($a_rec[
'visible_create']) ? $setting->setVisibleCreate(1) : $setting->setVisibleCreate($a_rec[
'visible_create']);
263 is_null($a_rec[
'visible_edit']) ? $setting->setVisibleEdit(1) : $setting->setVisibleEdit($a_rec[
'visible_edit']);
264 is_null($a_rec[
'required_edit']) ? $setting->setRequiredEdit(0) : $setting->setRequiredEdit($a_rec[
'required_edit']);
265 is_null($a_rec[
'locked_edit']) ? $setting->setLockedEdit(0) : $setting->setLockedEdit($a_rec[
'locked_edit']);
266 $setting->setDefaultValue($a_rec[
'default_value']);
270 case 'il_dcl_record':
271 $new_table_id = $a_mapping->getMapping(
'Modules/DataCollection',
'il_dcl_table', $a_rec[
'table_id']);
274 $record->setTableId($new_table_id);
276 $record->setCreateDate($datetime);
277 $record->setLastUpdate($datetime);
278 $record->setOwner($this->
user->getId());
279 $record->setLastEditBy($this->
user->getId());
281 $a_mapping->addMapping(
'Modules/DataCollection',
'il_dcl_record', $a_rec[
'id'], $record->getId());
285 $new_table_id = $a_mapping->getMapping(
'Modules/DataCollection',
'il_dcl_table', $a_rec[
'table_id']);
290 if ($a_rec[
'type'] == 0 && $a_rec[
'formtype'] == 0) {
292 $a_mapping->addMapping(
'Services/COPage',
'pg',
'dclf:' . $a_rec[
'id'],
'dclf:' . $tableview->getId());
293 $a_mapping->addMapping(
'Modules/DataCollection',
'il_dcl_view', $a_rec[
'id'], $tableview->getId());
295 $a_mapping->addMapping(
296 'Modules/DataCollection',
299 array(
'type' => $a_rec[
'type'],
'table_id' => $new_table_id,
'tableview_id' => $tableview->getId())
304 case 'il_dcl_viewdefinition':
305 $map = $a_mapping->getMapping(
'Modules/DataCollection',
'il_dcl_view', $a_rec[
'view_id']);
306 $new_field_id = $a_mapping->getMapping(
'Modules/DataCollection',
'il_dcl_field', $a_rec[
'field']);
307 $field = ($new_field_id) ? $new_field_id : $a_rec[
'field'];
308 switch ($map[
'type']) {
311 $viewfield_setting->setVisible($a_rec[
'is_set']);
312 $viewfield_setting->store();
316 $viewfield_setting->setInFilter($a_rec[
'is_set']);
317 $viewfield_setting->store();
321 $tablefield_setting->setExportable($a_rec[
'is_set']);
322 $tablefield_setting->setFieldOrder($a_rec[
'field_order']);
323 $tablefield_setting->store();
327 case 'il_dcl_sel_opts':
328 $new_field_id = $a_mapping->getMapping(
'Modules/DataCollection',
'il_dcl_field', $a_rec[
'field_id']);
331 $opt->setFieldId($new_field_id);
332 $opt->setOptId($a_rec[
'opt_id']);
333 $opt->setSorting($a_rec[
'sorting']);
334 $opt->setValue($a_rec[
'value']);
338 case 'il_dcl_field_prop':
339 $new_field_id = $a_mapping->getMapping(
'Modules/DataCollection',
'il_dcl_field', $a_rec[
'field_id']);
342 $prop->setFieldId($new_field_id);
345 $name = $a_rec[
'name'];
346 if (!isset(
$name) && isset($a_rec[
'datatype_prop_id'])) {
353 6 =>
'reference_link',
356 9 =>
'learning_progress',
357 10 =>
'ILIAS_reference_link',
358 11 =>
'multiple_selection',
360 13 =>
'display_action_menu',
361 14 =>
'link_detail_page',
362 15 =>
'link_detail_page',
365 $name = $properties[$a_rec[
'datatype_prop_id']];
368 $prop->setName(
$name);
371 $value = $a_rec[
'value'];
374 if (in_array($prop->getName(), $refs)) {
375 $new_field_id = $a_mapping->getMapping(
'Modules/DataCollection',
'il_dcl_field', $a_rec[
'value']);
376 if ($new_field_id ===
false) {
379 $value = $new_field_id;
382 $prop->setValue($value);
384 $a_mapping->addMapping(
'Modules/DataCollection',
'il_dcl_field_prop', $a_rec[
'id'], $prop->getId());
385 $this->import_temp_refs_props[$prop->getId()] = $a_rec[
'value'];
388 case 'il_dcl_record_field':
389 $record_id = $a_mapping->getMapping(
'Modules/DataCollection',
'il_dcl_record', $a_rec[
'record_id']);
390 $field_id = $a_mapping->getMapping(
'Modules/DataCollection',
'il_dcl_field', $a_rec[
'field_id']);
391 if ($record_id && $field_id) {
395 $a_mapping->addMapping(
'Modules/DataCollection',
'il_dcl_record_field', $a_rec[
'id'], $record_field->getId());
396 $this->import_record_field_cache[$record_field->getId()] = $record_field;
399 case 'il_dcl_stloc1_value':
400 case 'il_dcl_stloc2_value':
401 case 'il_dcl_stloc3_value':
402 $new_record_field_id = $a_mapping->getMapping(
'Modules/DataCollection',
'il_dcl_record_field', $a_rec[
'record_field_id']);
403 if ($new_record_field_id) {
405 $record_field = $this->import_record_field_cache[$new_record_field_id];
406 if (is_object($record_field)) {
409 switch ($record_field->getField()->getDatatypeId()) {
412 $new_mob_id = $a_mapping->getMapping(
'Services/MediaObjects',
'mob', $a_rec[
'value']);
413 $value = ($new_mob_id) ? (
int) $new_mob_id : null;
414 $this->import_temp_new_mob_ids[] = $new_mob_id;
417 $new_file_id = $a_mapping->getMapping(
'Modules/File',
'file', $a_rec[
'value']);
418 $value = ($new_file_id) ? (
int) $new_file_id : null;
424 $new_record_id = $a_mapping->getMapping(
'Modules/DataCollection',
'il_dcl_record', $a_rec[
'value']);
425 $this->import_temp_refs[$new_record_field_id] = $a_rec[
'value'];
426 $value = ($new_record_id) ? (
int) $new_record_id : null;
432 $value = $a_rec[
'value'];
433 if ($a_entity ==
'il_dcl_stloc3_value' && (is_null($value) || empty($value))) {
434 $value =
'0000-00-00 00:00:00';
437 $record_field->setValue($value,
true);
438 $record_field->doUpdate();
453 foreach ($this->import_temp_new_mob_ids as $new_mob_id) {
456 foreach ($this->import_temp_refs as $record_field_id => $old_record_id) {
457 $new_record_id = $a_mapping->
getMapping(
'Modules/DataCollection',
'il_dcl_record', $old_record_id);
458 $value = ($new_record_id) ? (
int) $new_record_id : null;
460 $record_field = $this->import_record_field_cache[$record_field_id];
461 $record_field->setValue($value,
true);
462 $record_field->doUpdate();
464 foreach ($this->import_temp_refs_props as $field_prop_id => $old_field_id) {
465 $new_field_id = $a_mapping->
getMapping(
'Modules/DataCollection',
'il_dcl_field', $old_field_id);
466 $value = ($new_field_id) ? (
int) $new_field_id : null;
468 $field_prop->setValue($value);
469 $field_prop->update();
489 "description" =>
"text",
490 'is_online' =>
'integer',
491 'rating' =>
'integer',
492 'public_notes' =>
'integer',
493 'approval' =>
'integer',
494 'notification' =>
'integer',
499 'obj_id' =>
'integer',
501 'add_perm' =>
'integer',
502 'edit_perm' =>
'integer',
503 'delete_perm' =>
'integer',
504 'edit_by_owner' =>
'integer',
505 'limited' =>
'integer',
506 'limit_start' =>
'text',
507 'limit_end' =>
'text',
508 'is_visible' =>
'integer',
509 'export_enabled' =>
'integer',
510 'import_enabled' =>
'integer',
511 'default_sort_field_id' =>
'text',
512 'default_sort_field_order' =>
'text',
513 'description' =>
'text',
514 'public_comments' =>
'integer',
515 'view_own_records_perm' =>
'integer',
516 'delete_by_owner' =>
'integer',
517 'save_confirmation' =>
'integer',
518 'table_order' =>
'integer',
520 case 'il_dcl_tableview':
523 'table_id' =>
'integer',
526 'step_vs' =>
'integer',
527 'step_c' =>
'integer',
528 'step_e' =>
'integer',
529 'step_o' =>
'integer',
530 'step_s' =>
'integer',
531 'description' =>
'text',
532 'tableview_order' =>
'integer',
537 'table_id' =>
'integer',
539 'description' =>
'text',
540 'datatype_id' =>
'integer',
541 'is_unique' =>
'integer',
543 case 'il_dcl_tview_set':
546 'tableview_id' =>
'integer',
548 'visible' =>
'integer',
549 'in_filter' =>
'integer',
550 'filter_value' =>
'text',
551 'filter_changeable' =>
'integer',
552 'required_create' =>
'integer',
553 'required_edit' =>
'integer',
554 'locked_create' =>
'integer',
555 'locked_edit' =>
'integer',
556 'visible_create' =>
'integer',
557 'visible_edit' =>
'integer',
558 'default_value' =>
'text',
560 case 'il_dcl_tfield_set':
563 'table_id' =>
'integer',
565 'field_order' =>
'integer',
566 'exportable' =>
'integer',
568 case 'il_dcl_field_prop':
571 'field_id' =>
'integer',
573 'value' =>
'integer',
575 case 'il_dcl_sel_opts':
578 'field_id' =>
'integer',
579 'opt_id' =>
'integer',
580 'sorting' =>
'integer',
583 case 'il_dcl_record':
586 'table_id' =>
'integer',
588 case 'il_dcl_record_field':
591 'record_id' =>
'integer',
592 'field_id' =>
'integer',
594 case 'il_dcl_stloc1_value':
597 'record_field_id' =>
'integer',
600 case 'il_dcl_stloc2_value':
603 'record_field_id' =>
'integer',
606 case 'il_dcl_stloc3_value':
609 'record_field_id' =>
'integer',
630 if (!$a_rec && !$a_ids) {
635 $set = $this->db->query(
'SELECT * FROM il_dcl_table WHERE obj_id = ' . $this->db->quote($a_rec[
'id'],
'integer') .
' ORDER BY id');
636 $ids = $this->
buildCache(
'il_dcl_table', $set);
639 'il_dcl_table' => array(
'ids' => $ids),
643 $set = $this->db->query(
'SELECT * FROM il_dcl_record WHERE table_id = ' . $this->db->quote($a_rec[
'id'],
'integer'));
644 $ids_records = $this->
buildCache(
'il_dcl_record', $set);
645 $set = $this->db->query(
'SELECT * FROM il_dcl_field WHERE table_id = ' . $this->db->quote($a_rec[
'id'],
'integer'));
646 $ids_fields = $this->
buildCache(
'il_dcl_field', $set);
647 $set = $this->db->query(
'SELECT * FROM il_dcl_tableview WHERE table_id = ' . $this->db->quote($a_rec[
'id'],
'integer'));
648 $ids_tableviews = $this->
buildCache(
'il_dcl_tableview', $set);
649 $set = $this->db->query(
'SELECT * FROM il_dcl_tfield_set WHERE table_id = ' . $this->db->quote($a_rec[
'id'],
'integer'));
650 $ids_tablefield_settings = $this->
buildCache(
'il_dcl_tfield_set', $set);
653 'il_dcl_field' => array(
'ids' => $ids_fields),
654 'il_dcl_record' => array(
'ids' => $ids_records),
655 'il_dcl_tableview' => array(
'ids' => $ids_tableviews),
656 'il_dcl_tfield_set' => array(
'ids' => $ids_tablefield_settings),
659 $set = $this->db->query(
'SELECT * FROM il_dcl_field_prop WHERE field_id = ' . $this->db->quote($a_rec[
'id'],
'integer'));
660 $prop_ids = $this->
buildCache(
'il_dcl_field_prop', $set);
662 $set = $this->db->query(
'SELECT * FROM il_dcl_sel_opts WHERE field_id = ' . $this->db->quote($a_rec[
'id'],
'integer'));
663 $opt_ids = $this->
buildCache(
'il_dcl_sel_opts', $set);
666 'il_dcl_field_prop' => array(
'ids' => $prop_ids),
667 'il_dcl_sel_opts' => array(
'ids' => $opt_ids),
669 case 'il_dcl_record':
670 $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)' 671 .
' INNER JOIN il_dcl_datatype AS d ON (f.datatype_id = d.id) ' .
' WHERE rf.record_id = ' 672 . $this->db->quote($a_rec[
'id'],
'integer');
673 $set = $this->db->query($sql);
674 $ids = $this->
buildCache(
'il_dcl_record_field', $set);
676 $set = $this->db->query($sql);
677 while ($rec = $this->db->fetchObject($set)) {
682 =
'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 ' 683 .
'LEFT JOIN il_dcl_stloc1_value AS st1 ON (st1.record_field_id = rf.id) ' 684 .
'LEFT JOIN il_dcl_stloc2_value AS st2 ON (st2.record_field_id = rf.id) ' 685 .
'LEFT JOIN il_dcl_stloc3_value AS st3 ON (st3.record_field_id = rf.id) ' .
'WHERE rf.record_id = ' 686 . $this->db->quote($a_rec[
'id'],
'integer');
687 $set = $this->db->query($sql);
689 while ($rec = $this->db->fetchObject($set)) {
690 $stloc = $this->record_field_ids_2_storage[$rec->record_field_id];
691 $value =
"value{$stloc}";
693 $this->caches[
"il_dcl_stloc{$stloc}_value"][$rec->record_field_id] = array(
694 'record_field_id' => $rec->record_field_id,
695 'value' => $rec->{$value},
700 'il_dcl_record_field' => array(
'ids' => $ids),
702 case 'il_dcl_tableview':
703 $set = $this->db->query(
'SELECT * FROM il_dcl_tview_set WHERE tableview_id = ' . $this->db->quote($a_rec[
'id'],
'integer'));
704 $ids = $this->
buildCache(
'il_dcl_tview_set', $set);
707 'il_dcl_tview_set' => array(
'ids' => $ids),
709 case 'il_dcl_record_field':
710 $record_field_id = $a_rec[
'id'];
711 $storage_loc = $this->record_field_ids_2_storage[$record_field_id];
714 "il_dcl_stloc{$storage_loc}_value" => array(
'ids' => array($record_field_id)),
729 public function readData($a_entity, $a_version, $a_ids)
731 $this->data = array();
732 if (!is_array($a_ids)) {
733 $a_ids = array($a_ids);
749 foreach ($a_ids as $dcl_id) {
754 'title' => $obj->getTitle(),
755 'description' => $obj->getDescription(),
756 'is_online' => $obj->getOnline(),
757 'rating' => $obj->getRating(),
758 'public_notes' => $obj->getPublicNotes(),
759 'approval' => $obj->getApproval(),
760 'notification' => $obj->getNotification(),
762 $this->caches[
'dcl'][$dcl_id] =
$data;
763 $this->data[] =
$data;
769 foreach ($a_ids as $id) {
770 $this->data[] =
$data[$id];
787 $fields = array_keys($this->
getTypes($a_entity,
''));
789 while ($rec = $this->db->fetchObject($set)) {
791 foreach ($fields as $field) {
792 $data[$field] = $rec->{$field};
795 $this->caches[$a_entity][$id] =
$data;
$record_field_ids_2_storage
getMapping($a_comp, $a_entity, $a_old_id)
Get a mapping.
_readData($a_entity, $a_ids)
Build data array, data is read from cache except dcl object itself.
Class ilDclBaseFieldModel.
static getInstance($table_id, $field)
Class ilDclBaseFieldModel.
readData($a_entity, $a_version, $a_ids)
Read data from Cache for a given entity and ID(s)
static getFieldCache($field_id=0)
Class ilDclFieldProperty.
getDependencies($a_entity, $a_version, $a_rec, $a_ids)
Return dependencies form entities to other entities (in our case these are all the DB relations) ...
const INPUTFORMAT_REFERENCELIST
getCache($a_entity)
Get cached data from a given entity.
static getTableCache($table_id=0)
Class ilDclBaseFieldModel.
Class ilDclTableViewFieldSetting.
static getInstance($tableview_id, $field_id)
buildCache($a_entity, $set)
Helper method to build cache for data of all entities.
DataCollection dataset class.
static getRecordCache($record_id=0)
getTargetId()
get target id
const INPUTFORMAT_ILIAS_REF
static getInstanceByObjId($a_obj_id, $stop_on_error=true)
get an instance of an Ilias object by object id
static _lookupType($a_id, $a_reference=false)
lookup object type
static createOrGetStandardView($table_id, $create_default_settings=true)
const INPUTFORMAT_REFERENCE
Class ilDclBaseRecordModel.
__construct(Container $dic, ilPlugin $plugin)
Class ilDclSelectionOption.
$import_record_field_cache
getTypes($a_entity, $a_version)
Map XML attributes of entities to datatypes (text, integer...)
A dataset contains in data in a common structure that can be shared and transformed for different pur...
getXmlNamespace($a_entity, $a_schema_version)
Class ilObjDataCollection.