ILIAS  release_8 Revision v8.19
All Data Structures Namespaces Files Functions Variables Modules Pages
class.ilMediaCastExporter.php
Go to the documentation of this file.
1 <?php
2 
25 {
27 
28  public function init(): void
29  {
30  $this->ds = new ilMediaCastDataSet();
31  $this->ds->setExportDirectories($this->dir_relative, $this->dir_absolute);
32  $this->ds->setDSPrefix("ds");
33  }
34 
36  string $a_entity,
37  string $a_target_release,
38  array $a_ids
39  ): array {
40  $news_ids = [];
41  foreach ($a_ids as $id) {
42  $mcst = new ilObjMediaCast($id, false);
43  $items = $mcst->readItems(true);
44  foreach ($items as $i) {
45  $news_ids[] = $i["id"];
46  }
47  }
48 
49  $deps = [];
50 
51  $deps[] = [
52  "component" => "Services/News",
53  "entity" => "news",
54  "ids" => $news_ids
55  ];
56 
57  // common object properties
58  $deps[] = array(
59  "component" => "Services/Object",
60  "entity" => "common",
61  "ids" => $a_ids);
62 
63  return $deps;
64  }
65 
66  public function getXmlRepresentation(
67  string $a_entity,
68  string $a_schema_version,
69  string $a_id
70  ): string {
71  return $this->ds->getXmlRepresentation($a_entity, $a_schema_version, [$a_id], "", true, true);
72  }
73 
74  public function getValidSchemaVersions(string $a_entity): array
75  {
76  return array(
77  "8.0" => array(
78  "namespace" => "https://www.ilias.de/Modules/MediaCast/mcst/8",
79  "xsd_file" => "ilias_mcst_8.xsd",
80  "uses_dataset" => true,
81  "min" => "8.0",
82  "max" => ""),
83  "5.0.0" => array(
84  "namespace" => "https://www.ilias.de/Modules/MediaCast/mcst/5_0",
85  "xsd_file" => "ilias_mcst_5_0.xsd",
86  "uses_dataset" => true,
87  "min" => "5.0.0",
88  "max" => "5.4.99"),
89  "4.1.0" => array(
90  "namespace" => "https://www.ilias.de/Modules/MediaCast/mcst/4_1",
91  "xsd_file" => "ilias_mcst_4_1.xsd",
92  "uses_dataset" => true,
93  "min" => "4.1.0",
94  "max" => "")
95  );
96  }
97 }
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
getXmlRepresentation(string $a_entity, string $a_schema_version, string $a_id)
getValidSchemaVersions(string $a_entity)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
getXmlExportTailDependencies(string $a_entity, string $a_target_release, array $a_ids)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
$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...
$i
Definition: metadata.php:41