24 public function init(): void
29 $this->ds->setDSPrefix(
'ds');
41 'namespace' =>
'https://www.ilias.de/Modules/DataCollection/dcl/4_5',
42 'xsd_file" => "ilias_dcl_4_5.xsd',
43 'uses_dataset' =>
true,
48 'namespace' =>
'https://www.ilias.de/Modules/DataCollection/dcl/4_5',
49 'xsd_file" => "ilias_dcl_4_5.xsd',
50 'uses_dataset' =>
true,
60 $this->ds->setExportDirectories($this->dir_relative, $this->dir_absolute);
62 return $this->ds->getXmlRepresentation($a_entity, $a_schema_version, [$a_id],
'',
true,
true);
75 $dependencies = array(
77 'component' =>
'Modules/File',
82 'component' =>
'Services/MediaObjects',
89 foreach ($a_ids as $dcl_obj_id) {
90 $sql =
"SELECT stloc2.value AS ext_id, f." . $this->db->quoteIdentifier(
'datatype_id') .
" FROM il_dcl_stloc2_value AS stloc2 " 91 .
"INNER JOIN il_dcl_record_field AS rf ON (rf." . $this->db->quoteIdentifier(
'id') .
" = stloc2." . $this->db->quoteIdentifier(
'record_field_id') .
") " 92 .
"INNER JOIN il_dcl_field AS f ON (rf." . $this->db->quoteIdentifier(
'field_id') .
" = f." . $this->db->quoteIdentifier(
'id') .
") " .
"INNER JOIN il_dcl_table AS t ON (t." 93 . $this->db->quoteIdentifier(
'id') .
" = f." . $this->db->quoteIdentifier(
'table_id') .
") " 94 .
"WHERE t." . $this->db->quoteIdentifier(
'obj_id') .
" = " . $this->db->quote(
97 ) .
" " .
"AND f.datatype_id IN (" 100 array_keys($dependencies)
101 ) .
") AND stloc2." . $this->db->quoteIdentifier(
'value') .
" IS NOT NULL";
102 $set = $this->db->query($sql);
103 while ($rec = $this->db->fetchObject($set)) {
104 $dependencies[$rec->datatype_id][
'ids'][] = (
int) $rec->ext_id;
128 $page_object_ids = array();
129 foreach ($a_ids as $dcl_obj_id) {
131 $sql =
"SELECT page_id FROM page_object " 132 .
"WHERE parent_type = " . $this->db->quote(
135 ) .
" AND parent_id = " . $this->db->quote($dcl_obj_id,
'integer');
136 $set = $this->db->query($sql);
137 while ($rec = $this->db->fetchObject($set)) {
138 $page_object_ids[] =
"dclf:" . $rec->page_id;
141 if (count($page_object_ids)) {
144 'component' =>
'Services/COPage',
146 'ids' => $page_object_ids,
getXmlExportHeadDependencies(string $a_entity, string $a_target_release, array $a_ids)
MOB/File fieldtypes objects are head dependencies They must be exported and imported first...
getXmlExportTailDependencies(string $a_entity, string $a_target_release, array $a_ids)
getXmlRepresentation(string $a_entity, string $a_schema_version, string $a_id)
static makeDirParents(string $a_dir)
Create a new directory and all parent directories.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
getAbsoluteExportDirectory()
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
getValidSchemaVersions(string $a_entity)
ilDataCollectionDataSet $ds