Lines Matching refs:XML
213 $XML = '';
218 return $XML;
233 $XML .= $this->__TOCItem($CURRENTNODE[$conf['start']], $DEPTH, !$didOpenItem);
237 $XML .= $this->__TOCItem($CURRENTNODE['element'], $DEPTH, !$didOpenItem);
242 $XML .= $this->__TOCItem(array('name' => $CURRENTNODENAME), $DEPTH, !$didOpenItem);
255 …$XML .= $this->__writeTOCTree($ELEM, count($ELEM) >= 1 ? ( !empty($ELEM['name']) ? $ELEM['name'] :…
259 return $XML . ($didOpenItem ? $this->__TOCItemClose($DEPTH) : '');
265 …public function __getTOCXML($DATA, $XML = "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<?NLS TYPE=… argument
282 $XML .= $this->__addXMLTopic($pagesArray, 'toc');
284 return $XML;
348 $XML = "$DEPTH<$ITEM label=\"$indexTitle\" $indexFile>";
350 $XML = "";
353 if (!$isEmptyNode && count($DATA) > 0) $XML .= "\n";
356 …$XML .= $this->__addXMLTopic($NS, (!($this->emptyNSToc || count($DATA) > 1) && $ITEM != 'topic' ? …
359 if (!$isEmptyNode && count($DATA) > 0) $XML .= "$DEPTH";
361 $XML .= "</$ITEM>\n";
364 return $XML;
373 …$XML = "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<?NLS TYPE=\"org.eclipse.help.context\"?>\n<co…
403 $XML .= "\t<context id=\"$VIEWID\" title=\"$TITLE\">\n";
404 $XML .= "\t\t<description>$DESCRIPTION</description>\n";
407 $XML .= "\t\t<topic label=\"$LABEL\" href=\"$URL\" />\n";
410 $XML .= "\t</context>\n";
414 $XML .= "</contexts>";
415 return $XML;