Mercurial > defr > DualBlog
view includes/class.domutils.php @ 7:e4e880f786d4
Utilisation d'une variable cohérente avec le config.php.dist
author | Franck Deroche <webmaster@defr.org> |
---|---|
date | Tue, 23 Oct 2007 15:25:27 +0200 |
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; } } ?>