view includes/class.domutils.php @ 82:0a57d5321383

admin.php: Correction d'un short open tag
author Franck Deroche <franck@defr.org>
date Tue, 20 Nov 2018 00:59:57 +0100
parents 629389204276
children
line wrap: on
line source
<?php
    class DOMUtils
    {
	public function createCDATAWrapper($doc, $wrapperName, $data)
	{
	    $CDATA = $doc->createCDataSection($data);
	    $wrapper = $doc->createElement($wrapperName);
	    $wrapper->appendChild($CDATA);
	    return $wrapper;
	}
    }
?>