TYPO3 API  SVNRelease
Public Member Functions
Auth_Yadis_XMLParser Class Reference
Inheritance diagram for Auth_Yadis_XMLParser:
Inheritance graph
[legend]

List of all members.

Public Member Functions

 init ($xml_string, $namespace_map)
 registerNamespace ($prefix, $uri)
 setXML ($xml_string)
 evalXPath ($xpath, $node=null)
 content ($node)
 attributes ($node)

Detailed Description

Definition at line 21 of file XML.php.


Member Function Documentation

Auth_Yadis_XMLParser::attributes ( node)

Return the attributes of a specified node.

Parameters:
mixed$nodeA node object from a previous call to $this->evalXPath().
Returns:
array $attrs An array mapping attribute names to values.

Reimplemented in Auth_Yadis_dom, and Auth_Yadis_domxml.

Definition at line 121 of file XML.php.

Auth_Yadis_XMLParser::content ( node)

Return the textual content of a specified node.

Parameters:
mixed$nodeA node object from a previous call to $this->evalXPath().
Returns:
string $content The content of this node.

Reimplemented in Auth_Yadis_dom, and Auth_Yadis_domxml.

Definition at line 107 of file XML.php.

Auth_Yadis_XMLParser::evalXPath ( xpath,
node = null 
)

Evaluate an XPath expression and return the resulting node list. This should be overridden by subclasses.

Parameters:
string$xpathThe XPath expression to be evaluated.
mixed$nodeA node object resulting from a previous evalXPath call. This node, if specified, provides the context for the evaluation of this xpath expression.
Returns:
array $node_list An array of matching opaque node objects to be used with other methods of this parser class.

Reimplemented in Auth_Yadis_dom, and Auth_Yadis_domxml.

Definition at line 94 of file XML.php.

Auth_Yadis_XMLParser::init ( xml_string,
namespace_map 
)

Initialize an instance of Auth_Yadis_XMLParser with some XML and namespaces. This SHOULD NOT be overridden by subclasses.

Parameters:
string$xml_stringA string of XML to be parsed.
array$namespace_mapAn array of ($ns_name => $ns_uri) to be registered with the XML parser. May be empty.
Returns:
boolean $result True if the initialization and namespace registration(s) succeeded; false otherwise.

Definition at line 33 of file XML.php.

References registerNamespace(), and setXML().

Auth_Yadis_XMLParser::registerNamespace ( prefix,
uri 
)

Register a namespace with the XML parser. This should be overridden by subclasses.

Parameters:
string$prefixThe namespace prefix to appear in XML tag names.
string$uriThe namespace URI to be used to identify the namespace in the XML.
Returns:
boolean $result True if the registration succeeded; false otherwise.

Reimplemented in Auth_Yadis_dom, and Auth_Yadis_domxml.

Definition at line 61 of file XML.php.

Referenced by init().

Auth_Yadis_XMLParser::setXML ( xml_string)

Set this parser object's XML payload. This should be overridden by subclasses.

Parameters:
string$xml_stringThe XML string to pass to this object's XML parser.
Returns:
boolean $result True if the initialization succeeded; false otherwise.

Reimplemented in Auth_Yadis_dom, and Auth_Yadis_domxml.

Definition at line 76 of file XML.php.

Referenced by init().


The documentation for this class was generated from the following file: