From 26d030d63339e6f36db5893fd291a59052467940 Mon Sep 17 00:00:00 2001 From: Cris Date: Mon, 25 May 2020 16:57:33 +0200 Subject: [PATCH] Created method setXMLTag_archivierbar in Dokument class This method appends an XML tag named 'archivierbar' with value 'true' to the XML data. --- include/dokument_export.class.php | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/include/dokument_export.class.php b/include/dokument_export.class.php index 523a5f89d..4f23a7dcd 100644 --- a/include/dokument_export.class.php +++ b/include/dokument_export.class.php @@ -575,5 +575,11 @@ class dokument_export } } } + + public function setXMLTag_archivierbar() + { + $archivierbar = $this->xml_data->createElement("archivierbar", "true"); + $this->xml_data->documentElement->appendChild($archivierbar); + } } ?>