ILIAS  release_8 Revision v8.19
All Data Structures Namespaces Files Functions Variables Modules Pages
class.ilContainerReferenceXmlWriter.php
Go to the documentation of this file.
1 <?php
2 
3 declare(strict_types=1);
4 
27 {
28  public const MODE_SOAP = 1;
29  public const MODE_EXPORT = 2;
30 
31  protected ilSetting $settings;
32 
33  private int $mode = self::MODE_SOAP;
35 
36  public function __construct(ilContainerReference $ref = null)
37  {
38  global $DIC;
39 
40  $this->settings = $DIC->settings();
42  $this->ref = $ref;
43  }
44 
45  public function setMode(int $a_mode): void
46  {
47  $this->mode = $a_mode;
48  }
49 
50  public function getMode(): int
51  {
52  return $this->mode;
53  }
54 
55  public function getReference(): ?ilContainerReference
56  {
57  return $this->ref;
58  }
59 
60  public function export(bool $a_with_header = true): void
61  {
62  if ($this->getMode() === self::MODE_EXPORT) {
63  if ($a_with_header) {
64  $this->buildHeader();
65  }
66  $this->buildReference();
67  $this->buildTarget();
68  $this->buildTitle();
69  $this->buildFooter();
70  }
71  }
72 
73  public function getXml(): string
74  {
75  return $this->xmlDumpMem(false);
76  }
77 
78  protected function buildHeader(): void
79  {
81 
82  $this->xmlSetDtdDef("<!DOCTYPE container reference PUBLIC \"-//ILIAS//DTD Group//EN\" \"" . ILIAS_HTTP_PATH . "/xml/ilias_container_reference_4_3.dtd\">");
83  $this->xmlSetGenCmt("Export of ILIAS container reference " . $this->getReference()->getId() . " of installation " . $ilSetting->get('inst_id') . ".");
84  $this->xmlHeader();
85  }
86 
87  protected function buildTarget(): void
88  {
89  $this->xmlElement('Target', ['id' => $this->getReference()->getTargetId()]);
90  }
91 
92  protected function buildTitle(): void
93  {
94  $title = '';
95  if ($this->getReference()->getTitleType() === ilContainerReference::TITLE_TYPE_CUSTOM) {
96  $title = $this->getReference()->getTitle();
97  }
98 
99  $this->xmlElement(
100  'Title',
101  [
102  'type' => $this->getReference()->getTitleType()
103  ],
104  $title
105  );
106  }
107 
108  protected function buildReference(): void
109  {
110  $this->xmlStartTag('ContainerReference');
111  }
112 
113  protected function buildFooter(): void
114  {
115  $this->xmlEndTag('ContainerReference');
116  }
117 }
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...
xmlSetGenCmt(string $genCmt)
Sets generated comment.
xmlEndTag(string $tag)
Writes an endtag.
global $DIC
Definition: feed.php:28
xmlSetDtdDef(string $dtdDef)
Sets dtd definition.
xmlHeader()
Writes xml header.
global $ilSetting
Definition: privfeed.php:17
__construct(Container $dic, ilPlugin $plugin)
xmlStartTag(string $tag, ?array $attrs=null, bool $empty=false, bool $encode=true, bool $escape=true)
Writes a starttag.
xmlElement(string $tag, $attrs=null, $data=null, $encode=true, $escape=true)
Writes a basic element (no children, just textual content)
xmlDumpMem(bool $format=true)
Returns xml document from memory.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...