ILIAS  trunk Revision v11.0_alpha-1702-gfd3ecb7f852
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.ilMediaPoolExporter.php
Go to the documentation of this file.
1 <?php
2 
25 {
28 
29  public function init(): void
30  {
31  $this->ds = new ilMediaPoolDataSet();
32  $this->ds->initByExporter($this);
33  $this->ds->setDSPrefix("ds");
34  $this->config = $this->getExport()->getConfig("components/ILIAS/MediaPool");
35  if ($this->config->getMasterLanguageOnly()) {
36  $conf = $this->getExport()->getConfig("components/ILIAS/COPage");
37  $conf->setMasterLanguageOnly(true, $this->config->getIncludeMedia());
38  $this->ds->setMasterLanguageOnly(true);
39  }
40  }
41 
43  string $a_entity,
44  string $a_target_release,
45  array $a_ids
46  ): array {
47  $mob_ids = array();
48 
49  foreach ($a_ids as $id) {
50  $m_ids = ilObjMediaPool::getAllMobIds($id);
51  foreach ($m_ids as $m) {
52  $mob_ids[] = $m;
53  }
54  }
55 
56  if ($this->config->getMasterLanguageOnly()) {
57  return array();
58  }
59 
60  return array(
61  array(
62  "component" => "components/ILIAS/MediaObjects",
63  "entity" => "mob",
64  "ids" => $mob_ids)
65  );
66  }
67 
69  string $a_entity,
70  string $a_target_release,
71  array $a_ids
72  ): array {
73  $pg_ids = array();
74 
75  foreach ($a_ids as $id) {
76  $pages = ilMediaPoolItem::getIdsForType($id, "pg");
77  foreach ($pages as $p) {
78  $pg_ids[] = "mep:" . $p;
79  }
80  }
81 
82  $deps = array(
83  array(
84  "component" => "components/ILIAS/COPage",
85  "entity" => "pg",
86  "ids" => $pg_ids)
87  );
88 
89  if (!$this->config->getMasterLanguageOnly()) {
90  $deps[] = array(
91  "component" => "components/ILIAS/ILIASObject",
92  "entity" => "transl",
93  "ids" => $a_ids);
94  $deps[] = array(
95  "component" => "components/ILIAS/ILIASObject",
96  "entity" => "transl_entry",
97  "ids" => $a_ids);
98  }
99 
100  $deps[] = array(
101  "component" => "components/ILIAS/ILIASObject",
102  "entity" => "tile",
103  "ids" => $a_ids);
104 
105  $md_ids = [];
106  foreach ($a_ids as $id) {
107  $md_ids[] = $id . ':0:mep';
108  }
109  if (!empty($md_ids)) {
110  $deps[] = [
111  'component' => 'components/ILIAS/MetaData',
112  'entity' => 'md',
113  'ids' => $md_ids,
114  ];
115  }
116 
117  return $deps;
118  }
119 
120  public function getXmlRepresentation(
121  string $a_entity,
122  string $a_schema_version,
123  string $a_id
124  ): string {
125  return $this->ds->getXmlRepresentation($a_entity, $a_schema_version, [$a_id], "", true, true);
126  }
127 
128  public function getValidSchemaVersions(string $a_entity): array
129  {
130  return array(
131  "5.1.0" => array(
132  "namespace" => "https://www.ilias.de/Modules/MediaPool/mep/5_1",
133  "xsd_file" => "ilias_mep_5_1.xsd",
134  "uses_dataset" => true,
135  "min" => "5.1.0",
136  "max" => ""),
137  "4.1.0" => array(
138  "namespace" => "https://www.ilias.de/Modules/MediaPool/mep/4_1",
139  "xsd_file" => "ilias_mep_4_1.xsd",
140  "uses_dataset" => true,
141  "min" => "4.1.0",
142  "max" => "")
143  );
144  }
145 }
getXmlExportTailDependencies(string $a_entity, string $a_target_release, array $a_ids)
getXmlRepresentation(string $a_entity, string $a_schema_version, string $a_id)
Export configuration class parent class.
static getAllMobIds(int $a_id)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
getValidSchemaVersions(string $a_entity)
$id
plugin.php for ilComponentBuildPluginInfoObjectiveTest::testAddPlugins
Definition: plugin.php:23
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
getXmlExportHeadDependencies(string $a_entity, string $a_target_release, array $a_ids)
static getIdsForType(int $a_id, string $a_type)
Get all ids for type.