API: If key begins with '@' treat it as an xml attribute
This commit is contained in:
parent
8f9d3cd01d
commit
02f8c941f4
1 changed files with 9 additions and 2 deletions
11
lib/api.php
11
lib/api.php
|
@ -188,18 +188,25 @@ class OC_API {
|
|||
}
|
||||
|
||||
private static function toXML($array, $writer) {
|
||||
|
||||
foreach($array as $k => $v) {
|
||||
if (is_numeric($k)) {
|
||||
if (substr($k, 0, 1) === '@') {
|
||||
$writer->writeAttribute(substr($k, 1), $v);
|
||||
continue;
|
||||
} else if (is_numeric($k)) {
|
||||
$k = 'element';
|
||||
}
|
||||
if (is_array($v)) {
|
||||
|
||||
if(is_array($v)) {
|
||||
$writer->startElement($k);
|
||||
self::toXML($v, $writer);
|
||||
$writer->endElement();
|
||||
} else {
|
||||
$writer->writeElement($k, $v);
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue