Lines Matching refs:output
43 $output = '';
55 $output .= '<ol>';
64 $output .= '<li class=\"li1\"><div>';
67 $this->parseDoxygenXMLElement($codeline, $output, $tag_conf);
70 $output .= '</div></li>';
72 $output .= DOKU_LF;
78 $output .= '</ol>';
81 return $output;
98 private function parseDoxygenXMLElement($element, &$output, $tag_conf = null) argument
115 $output .= '<span';
117 $output .= ' class="';
119 $output .= $this->mapping[$node->getAttribute('class')];
122 $output .= $node->getAttribute('class');
124 $output .= '"';
126 $output .= '>';
130 $this->parseDoxygenXMLElement($node, $output, $tag_conf);
132 $output .= '</span>';
136 $output .= ' ';
139 $output .= "<a";
141 $output .= ' href="';
142 $output .= $this->convertRefToURL($node, $tag_conf);
143 $output .= '" target="' . $conf['target']['extern'];
144 $output .= '"';
146 $output .= ">";
147 $output .= $node->nodeValue;
148 $output .= "</a>";
157 $output .= $node->nodeValue;
182 $output = '';
193 $output .= $conf['docu_url'];
211 $output .= $first;
212 $output .= ".html#";
213 $output .= $last;
216 $output .= $ref;
219 if (substr($output, -5) !== '.html') {
220 $output .= ".html";
224 return $output;