Mercurial > defr > DualBlog
view includes/class.domutils.php @ 66:4723204733ef
ADMIN_MAIL et non ADMIN_MAIl
author | Franck Deroche <webmaster@defr.org> |
---|---|
date | Tue, 18 Mar 2008 18:40:12 +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; } } ?>