ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.ilXMLResultSetWriter.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
27 {
29 
30  public function __construct(ilXMLResultSet $xmlResultSet)
31  {
33  $this->xmlResultSet = $xmlResultSet;
34  }
35 
36  public function start(): bool
37  {
38  $this->buildHeader();
39  $this->buildColSpecs();
40  $this->buildRows();
41  $this->buildFooter();
42  return true;
43  }
44 
45  private function buildHeader(): void
46  {
47  $this->xmlSetDtdDef("<!DOCTYPE result PUBLIC \"-//ILIAS//DTD XMLResultSet//EN\" \"" . ILIAS_HTTP_PATH . "/components/ILIAS/Export/xml/ilias_xml_resultset_3_7.dtd\">");
48  $this->xmlHeader();
49  $this->xmlStartTag("result");
50  }
51 
52  private function buildColSpecs(): void
53  {
54  $this->xmlStartTag("colspecs");
55  foreach ($this->xmlResultSet->getColSpecs() as $colSpec) {
56  $attr = array("idx" => $colSpec->getIndex(), "name" => $colSpec->getName());
57 
58  $this->xmlElement("colspec", $attr, null);
59  }
60  $this->xmlEndTag("colspecs");
61  }
62 
63  private function buildRows(): void
64  {
65  $this->xmlStartTag("rows");
66  foreach ($this->xmlResultSet->getRows() as $row) {
67  $this->appendRow($row);
68  }
69  $this->xmlEndTag("rows");
70  }
71 
72  private function appendRow(ilXMLResultSetRow $xmlResultSetRow): void
73  {
74  $this->xmlStartTag('row', null);
75  foreach ($xmlResultSetRow->getColumns() as $value) {
76  $this->xmlElement('column', null, $value);
77  }
78  $this->xmlEndTag('row');
79  }
80 
81  private function buildFooter(): void
82  {
83  $this->xmlEndTag('result');
84  }
85 
86  public function getXML(): string
87  {
88  return $this->xmlDumpMem(false);
89  }
90 }
XML Writer for XMLResultSet.
Row Class for XMLResultSet.
__construct(ilXMLResultSet $xmlResultSet)
xmlEndTag(string $tag)
Writes an endtag.
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
appendRow(ilXMLResultSetRow $xmlResultSetRow)
xmlSetDtdDef(string $dtdDef)
Sets dtd definition.
xmlHeader()
Writes xml header.
__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.