Created method setXMLTag_archivierbar in Dokument class

This method appends an XML tag named 'archivierbar' with value 'true' to
the XML data.
This commit is contained in:
Cris
2020-05-25 16:57:33 +02:00
parent 55ac09ca53
commit 26d030d633
+6
View File
@@ -575,5 +575,11 @@ class dokument_export
}
}
}
public function setXMLTag_archivierbar()
{
$archivierbar = $this->xml_data->createElement("archivierbar", "true");
$this->xml_data->documentElement->appendChild($archivierbar);
}
}
?>