Definition at line 219 of file XML.php.
◆ attributes()
Auth_Yadis_dom::attributes |
( |
|
$node | ) |
|
Definition at line 283 of file XML.php.
References $result.
286 $arr = $node->attributes;
290 for ($i = 0; $i < $arr->length; $i++) {
291 $node = $arr->item($i);
292 $result[$node->nodeName] = $node->nodeValue;
◆ Auth_Yadis_dom()
Auth_Yadis_dom::Auth_Yadis_dom |
( |
| ) |
|
Definition at line 220 of file XML.php.
225 $this->errors = array();
◆ content()
Auth_Yadis_dom::content |
( |
|
$node | ) |
|
Definition at line 276 of file XML.php.
279 return $node->textContent;
◆ evalXPath()
& Auth_Yadis_dom::evalXPath |
( |
|
$xpath, |
|
|
|
$node = null |
|
) |
| |
Definition at line 255 of file XML.php.
References $n, and $result.
258 $result = @$this->xpath->query($xpath, $node);
260 $result = @$this->xpath->query($xpath);
269 for ($i = 0; $i <
$result->length; $i++) {
◆ registerNamespace()
Auth_Yadis_dom::registerNamespace |
( |
|
$prefix, |
|
|
|
$uri |
|
) |
| |
Definition at line 250 of file XML.php.
252 return $this->xpath->registerNamespace($prefix, $uri);
◆ setXML()
Auth_Yadis_dom::setXML |
( |
|
$xml_string | ) |
|
Definition at line 228 of file XML.php.
230 $this->xml = $xml_string;
237 if (!@$this->doc->loadXML($xml_string)) {
241 $this->xpath =
new DOMXPath($this->doc);
The documentation for this class was generated from the following file:
- Services/OpenId/lib/Auth/Yadis/XML.php