19 declare(strict_types=1);
26 public function init(): void
31 $this->ds->setDSPrefix(
'ds');
43 'namespace' =>
'https://www.ilias.de/Modules/DataCollection/dcl/4_5',
44 'xsd_file" => "ilias_dcl_4_5.xsd',
45 'uses_dataset' =>
true,
50 'namespace' =>
'https://www.ilias.de/Modules/DataCollection/dcl/4_5',
51 'xsd_file" => "ilias_dcl_4_5.xsd',
52 'uses_dataset' =>
true,
62 $this->ds->initByExporter($this);
64 return $this->ds->getXmlRepresentation($a_entity, $a_schema_version, [$a_id],
'',
true,
true);
79 'component' =>
'components/ILIAS/File',
84 'component' =>
'components/ILIAS/MediaObjects',
91 foreach ($a_ids as $dcl_obj_id) {
92 $sql =
"SELECT stloc2.value AS ext_id, f." . $this->db->quoteIdentifier(
'datatype_id') .
" FROM il_dcl_stloc2_value AS stloc2 " 93 .
"INNER JOIN il_dcl_record_field AS rf ON (rf." . $this->db->quoteIdentifier(
'id') .
" = stloc2." . $this->db->quoteIdentifier(
'record_field_id') .
") " 94 .
"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." 95 . $this->db->quoteIdentifier(
'id') .
" = f." . $this->db->quoteIdentifier(
'table_id') .
") " 96 .
"WHERE t." . $this->db->quoteIdentifier(
'obj_id') .
" = " . $this->db->quote(
99 ) .
" " .
"AND f.datatype_id IN (" 102 array_keys($dependencies)
103 ) .
") AND stloc2." . $this->db->quoteIdentifier(
'value') .
" IS NOT NULL";
104 $set = $this->db->query($sql);
105 while ($rec = $this->db->fetchObject($set)) {
106 $dependencies[$rec->datatype_id][
'ids'][] = (
int) $rec->ext_id;
131 $page_object_ids = [];
132 foreach ($a_ids as $dcl_obj_id) {
134 $sql =
"SELECT page_id FROM page_object " 135 .
"WHERE parent_type = " . $this->db->quote(
138 ) .
" AND parent_id = " . $this->db->quote($dcl_obj_id,
'integer');
139 $set = $this->db->query($sql);
140 while ($rec = $this->db->fetchObject($set)) {
141 $page_object_ids[] =
"dclf:" . $rec->page_id;
144 if (count($page_object_ids)) {
146 'component' =>
'components/ILIAS/COPage',
148 'ids' => $page_object_ids
153 foreach ($a_ids as
$id) {
154 $md_ids[] = $id .
':0:dcl';
156 if ($md_ids !== []) {
158 'component' =>
'components/ILIAS/MetaData',
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.
getAbsoluteExportDirectory()
const INPUTFORMAT_FILEUPLOAD
$id
plugin.php for ilComponentBuildPluginInfoObjectiveTest::testAddPlugins
getValidSchemaVersions(string $a_entity)
ilDataCollectionDataSet $ds