channels[] = $channel; return $this; } /** * Render XML * @return string */ public function render() { $xml = new SimpleXMLElement('', LIBXML_NOERROR|LIBXML_ERR_NONE|LIBXML_ERR_FATAL); foreach ( $this->channels as $channel ) { $toDom = dom_import_simplexml($xml); $fromDom = dom_import_simplexml($channel->asXML()); $toDom->appendChild($toDom->ownerDocument->importNode($fromDom, true)); } $dom = new DOMDocument('1.0', 'UTF-8'); $dom->appendChild($dom->importNode(dom_import_simplexml($xml), true)); $dom->formatOutput = true; return $dom->saveXML(); } /** * Render XML * @return string */ public function __toString() { return $this->render(); } }