ILIAS  release_8 Revision v8.19
All Data Structures Namespaces Files Functions Variables Modules Pages
class.ilStyleExporter.php
Go to the documentation of this file.
1 <?php
2 
25 {
26  protected ilStyleDataSet $ds;
27 
28  public function init(): void
29  {
30  $this->ds = new ilStyleDataSet();
31  $this->ds->setExportDirectories($this->dir_relative, $this->dir_absolute);
32  $this->ds->setDSPrefix("ds");
33  }
34 
35  public function getXmlRepresentation(string $a_entity, string $a_schema_version, string $a_id): string
36  {
38  $this->ds->setExportDirectories($this->dir_relative, $this->dir_absolute);
39  return $this->ds->getXmlRepresentation($a_entity, $a_schema_version, [$a_id], "", true, true);
40  }
41 
42  public function getValidSchemaVersions(string $a_entity): array
43  {
44  return array(
45  "8.0" => array(
46  "namespace" => "http://www.ilias.de/Services/Style/8",
47  "xsd_file" => "ilias_style_8.xsd",
48  "uses_dataset" => true,
49  "min" => "8.0",
50  "max" => ""),
51  "5.1.0" => array(
52  "namespace" => "http://www.ilias.de/Services/Style/5_1",
53  "xsd_file" => "ilias_style_5_1.xsd",
54  "uses_dataset" => true,
55  "min" => "5.1.0",
56  "max" => ""),
57  "5.0.0" => array(
58  "namespace" => "http://www.ilias.de/Services/Style/5_0",
59  "xsd_file" => "ilias_style_5_0.xsd",
60  "uses_dataset" => false,
61  "min" => "5.0.0",
62  "max" => "")
63  );
64  }
65 }
getXmlRepresentation(string $a_entity, string $a_schema_version, string $a_id)
static makeDirParents(string $a_dir)
Create a new directory and all parent directories.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
getValidSchemaVersions(string $a_entity)
Style Data set class.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...