mirror of
https://github.com/FH-Complete/FHC-Core.git
synced 2026-06-01 12:19:28 +00:00
CMS Modul Updates
News Modul Erstversion
This commit is contained in:
@@ -35,15 +35,19 @@ class XSDFormPrinter
|
||||
*
|
||||
* Erzeugt das Formular
|
||||
* @param $xsd XSD File (nicht der Filename)
|
||||
* @param $xml XML mit den Daten die vorausgefuellt werden sollen
|
||||
*/
|
||||
public function output($xsd, $xml)
|
||||
{
|
||||
$dom = new DOMDocument();
|
||||
$dom->loadXML($xsd);
|
||||
|
||||
$this->xml_inhalt = new DOMDocument();
|
||||
$this->xml_inhalt->loadXML($xml);
|
||||
|
||||
$this->xml_inhalt = new DOMDocument();
|
||||
if($xml!='')
|
||||
{
|
||||
$this->xml_inhalt->loadXML($xml);
|
||||
}
|
||||
if($dom===false)
|
||||
{
|
||||
echo 'Failed to load XSD into DOM';
|
||||
|
||||
Reference in New Issue
Block a user