PortableInfobox/services/Helpers/SimpleXmlUtil.php
2015-05-19 14:15:06 +00:00

42 lines
873 B
PHP

<?php
namespace Wikia\PortableInfobox\Helpers;
class SimpleXmlUtil {
private static $instance = null;
private function __construct() {
}
/**
* @return null|SimpleXmlUtil
*/
public static function getInstance() {
if ( is_null( self::$instance ) ) {
self::$instance = new self;
}
return self::$instance;
}
/**
* Gets contents of SimpleXML node as XML string
* Will return empty string for a non-node argument
*
* @param $node
* @return string
*/
public function getInnerXML( $node ) {
$innerXML = '';
if ( $node instanceof \SimpleXMLElement ) {
$domElement = dom_import_simplexml( $node );
if ( ( $domElement instanceof \DOMElement ) && ( $domElement->hasChildNodes() ) ) {
foreach ( $domElement->childNodes as $child ) {
$innerXML .= $child->ownerDocument->saveXML( $child );
}
}
}
return $innerXML;
}
}