ILIAS
Release_4_1_x_branch Revision 61804
|
Public Member Functions | |
Auth_Yadis_dom () | |
setXML ($xml_string) | |
Set this parser object's XML payload. | |
registerNamespace ($prefix, $uri) | |
Register a namespace with the XML parser. | |
& | evalXPath ($xpath, $node=null) |
Evaluate an XPath expression and return the resulting node list. | |
content ($node) | |
Return the textual content of a specified node. | |
attributes ($node) | |
Return the attributes of a specified node. | |
Public Member Functions inherited from Auth_Yadis_XMLParser | |
init ($xml_string, $namespace_map) | |
Initialize an instance of Auth_Yadis_XMLParser with some XML and namespaces. |
Auth_Yadis_dom::attributes | ( | $node | ) |
Return the attributes of a specified node.
mixed | $node | A node object from a previous call to $this->evalXPath(). |
Reimplemented from Auth_Yadis_XMLParser.
Definition at line 283 of file XML.php.
References $result.
Auth_Yadis_dom::Auth_Yadis_dom | ( | ) |
Auth_Yadis_dom::content | ( | $node | ) |
Return the textual content of a specified node.
mixed | $node | A node object from a previous call to $this->evalXPath(). |
Reimplemented from Auth_Yadis_XMLParser.
Definition at line 276 of file XML.php.
& Auth_Yadis_dom::evalXPath | ( | $xpath, | |
$node = null |
|||
) |
Evaluate an XPath expression and return the resulting node list.
This should be overridden by subclasses.
string | $xpath | The XPath expression to be evaluated. |
mixed | $node | A node object resulting from a previous evalXPath call. This node, if specified, provides the context for the evaluation of this xpath expression. |
Reimplemented from Auth_Yadis_XMLParser.
Auth_Yadis_dom::registerNamespace | ( | $prefix, | |
$uri | |||
) |
Register a namespace with the XML parser.
This should be overridden by subclasses.
string | $prefix | The namespace prefix to appear in XML tag names. |
string | $uri | The namespace URI to be used to identify the namespace in the XML. |
Reimplemented from Auth_Yadis_XMLParser.
Definition at line 250 of file XML.php.
Auth_Yadis_dom::setXML | ( | $xml_string | ) |
Set this parser object's XML payload.
This should be overridden by subclasses.
string | $xml_string | The XML string to pass to this object's XML parser. |
Reimplemented from Auth_Yadis_XMLParser.
Definition at line 228 of file XML.php.