ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.ilWebResourceExporter.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
27 {
29 
30  protected ilLogger $logger;
31 
35  public function __construct()
36  {
37  global $DIC;
38 
40  $this->logger = $DIC->logger()->webr();
41  }
42 
46  public function getXmlRepresentation(
47  string $a_entity,
48  string $a_schema_version,
49  string $a_id
50  ): string {
51  try {
52  $this->writer = new ilWebLinkXmlWriter(false);
53  $this->writer->setObjId((int) $a_id);
54  $this->writer->write(true);
55  return $this->writer->xmlDumpMem(false);
56  } catch (UnexpectedValueException $e) {
57  $this->logger->warning("Caught error: " . $e->getMessage());
58  return '';
59  }
60  }
61 
66  string $a_entity,
67  string $a_target_release,
68  array $a_ids
69  ): array {
70  $deps = [];
71  // service settings
72  $deps[] = [
73  "component" => "components/ILIAS/ILIASObject",
74  "entity" => "common",
75  "ids" => $a_ids
76  ];
77 
78  $md_ids = [];
79  foreach ($a_ids as $id) {
80  $md_ids[] = $id . ':0:webr';
81  }
82  if (!empty($md_ids)) {
83  $deps[] = [
84  'component' => 'components/ILIAS/MetaData',
85  'entity' => 'md',
86  'ids' => $md_ids,
87  ];
88  }
89 
90  return $deps;
91  }
92 
96  public function getValidSchemaVersions(string $a_entity): array
97  {
98  return array(
99  "4.1.0" => array(
100  "namespace" => "http://www.ilias.de/Modules/WebResource/webr/4_1",
101  "xsd_file" => "ilias_webr_4_1.xsd",
102  "uses_dataset" => false,
103  "min" => "4.1.0",
104  "max" => ""
105  )
106  );
107  }
108 
109  public function init(): void
110  {
111  }
112 }
getXmlRepresentation(string $a_entity, string $a_schema_version, string $a_id)
getValidSchemaVersions(string $a_entity)
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
global $DIC
Definition: shib_login.php:22
getXmlExportTailDependencies(string $a_entity, string $a_target_release, array $a_ids)
$id
plugin.php for ilComponentBuildPluginInfoObjectiveTest::testAddPlugins
Definition: plugin.php:23
__construct(Container $dic, ilPlugin $plugin)
XML writer for weblinks.