Lines Matching refs:XML
210 $XML = '';
215 return $XML;
230 $XML .= $this->__TOCItem($CURRENTNODE[$conf['start']], $DEPTH, !$didOpenItem);
234 $XML .= $this->__TOCItem($CURRENTNODE['element'], $DEPTH, !$didOpenItem);
239 $XML .= $this->__TOCItem(array('name' => $CURRENTNODENAME), $DEPTH, !$didOpenItem);
252 …$XML .= $this->__writeTOCTree($ELEM, count($ELEM) >= 1 ? ( !empty($ELEM['name']) ? $ELEM['name'] :…
256 return $XML . ($didOpenItem ? $this->__TOCItemClose($DEPTH) : '');
262 …public function __getTOCXML($DATA, $XML = "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<?NLS TYPE=… argument
279 $XML .= $this->__addXMLTopic($pagesArray, 'toc');
281 return $XML;
345 $XML = "$DEPTH<$ITEM label=\"$indexTitle\" $indexFile>";
347 $XML = "";
350 if (!$isEmptyNode && count($DATA) > 0) $XML .= "\n";
353 …$XML .= $this->__addXMLTopic($NS, (!($this->emptyNSToc || count($DATA) > 1) && $ITEM != 'topic' ? …
356 if (!$isEmptyNode && count($DATA) > 0) $XML .= "$DEPTH";
358 $XML .= "</$ITEM>\n";
361 return $XML;
370 …$XML = "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<?NLS TYPE=\"org.eclipse.help.context\"?>\n<co…
400 $XML .= "\t<context id=\"$VIEWID\" title=\"$TITLE\">\n";
401 $XML .= "\t\t<description>$DESCRIPTION</description>\n";
404 $XML .= "\t\t<topic label=\"$LABEL\" href=\"$URL\" />\n";
407 $XML .= "\t</context>\n";
411 $XML .= "</contexts>";
412 return $XML;