ILIAS  release_8 Revision v8.19
All Data Structures Namespaces Files Functions Variables Modules Pages
class.ilNotesExporter.php
Go to the documentation of this file.
1 <?php
2 
26 {
28 
32  public function init(): void
33  {
34  $this->ds = new ilNotesDataSet();
35  $this->ds->setExportDirectories($this->dir_relative, $this->dir_absolute);
36  $this->ds->setDSPrefix("ds");
37  }
38 
39  public function getXmlRepresentation(
40  string $a_entity,
41  string $a_schema_version,
42  string $a_id
43  ): string {
44  $this->ds->setExportDirectories($this->dir_relative, $this->dir_absolute);
45  return $this->ds->getXmlRepresentation($a_entity, $a_schema_version, [$a_id], "", true, true);
46  }
47 
48  public function getValidSchemaVersions(
49  string $a_entity
50  ): array {
51  return array(
52  "4.3.0" => array(
53  "namespace" => "https://www.ilias.de/Services/Notes/note/4_3",
54  "xsd_file" => "ilias_usr_4_3.xsd",
55  "uses_dataset" => true,
56  "min" => "4.3.0",
57  "max" => "")
58  );
59  }
60 }
init()
Initialisation.
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...
getXmlRepresentation(string $a_entity, string $a_schema_version, string $a_id)
getValidSchemaVersions(string $a_entity)
Notes Data set class.