You are here

function JSimpleXML::importDom in Ubercart 5

Get a JSimpleXMLElement object from a DOM node.

This function takes a node of a DOM document and makes it into a JSimpleXML node. This new object can then be used as a native JSimpleXML element. If any errors occur, it returns FALSE.

Parameters

string DOM document:

string currently ignored:

Return value

object JSimpleXMLElement

File

uc_store/includes/simplexml.php, line 209

Class

JSimpleXML
SimpleXML implementation.

Code

function importDom($node, $classname = null) {
  return false;
}