Lines Matching refs:this

40             if (!$plugin->render($this->getFormat(),$this,$data)) {
43 $tmpData = $this->doc;
44 $this->doc = '';
45 if ($plugin->render('xhtml',$this,$data) && ($this->doc != '')) {
52 $this->doc = $tmpData . DOKU_LF .
53 trim(html_entity_decode(preg_replace($search,' ',$this->doc),ENT_QUOTES)) .
55 } else $this->doc = $tmpData;
63 $this->doc = '';
64 $this->toc = array();
65 $this->footnotes = array();
66 $this->store = '';
67 $this->nSpan = 0;
68 $this->separator = '';
79 if ( count($this->footnotes) > 0 ) {
80 $this->doc .= DOKU_LF;
83 foreach ( $this->footnotes as $footnote ) {
88 $this->doc .= $id.') ';
90 $alt = array_keys($this->footnotes, "@@FNT$id");
93 $this->doc .= ($ref+1).') ';
96 $this->doc .= $footnote . DOKU_LF;
103 …if($this->info['toc'] && is_array($this->toc) && $conf['tocminheads'] && count($this->toc) >= $con…
105 $TOC = $this->toc;
109 … $this->doc = preg_replace('#'.DOKU_LF.'\s*'.DOKU_LF.'\s*'.DOKU_LF.'#',DOKU_LF.DOKU_LF,$this->doc);
113 $this->doc .= DOKU_LF . $text . DOKU_LF;
120 $this->doc .= DOKU_LF;
124 $this->doc .= $text;
131 $this->doc .= DOKU_LF;
135 $this->doc .= DOKU_LF;
139 $this->doc .= '--------'.DOKU_LF;
238 $this->store = $this->doc;
239 $this->doc = '';
253 $footnote = $this->doc;
254 $this->doc = $this->store;
255 $this->store = '';
258 $i = array_search($footnote, $this->footnotes);
262 $id = count($this->footnotes)+1;
263 $this->footnotes[count($this->footnotes)] = $footnote;
267 $id = count($this->footnotes)+1;
268 $this->footnotes[count($this->footnotes)] = "@@FNT".($i);
272 $this->doc .= ' '.$id.')';
282 $this->doc .= DOKU_LF;
295 $this->doc .= DOKU_LF;
320 $this->doc .= DOKU_LF;
324 $this->doc .= $text;
333 $this->html(ob_get_contents());
336 $this->cdata($text);
341 $this->doc .= $text;
345 $this->doc .= strip_tags($text);
349 $this->html($text);
362 $this->doc .= DOKU_LF;
366 $this->doc .= $text.DOKU_LF;
370 $this->doc .= $text.DOKU_LF;
374 $this->preformatted($text);
378 if ( array_key_exists($acronym, $this->acronyms) ) {
379 $title = $this->acronyms[$acronym];
380 $this->doc .= $acronym.' ('.$title.')';
382 $this->doc .= $acronym;
387 $this->doc .= $smiley;
391 if ( array_key_exists($entity, $this->entities) ) {
392 $this->doc .= $this->entities[$entity];
394 $this->doc .= $entity;
399 $this->doc .= $x.'x'.$y;
404 $this->doc .= $lang['singlequoteopening'];
409 $this->doc .= $lang['singlequoteclosing'];
414 $this->doc .= $lang['apostrophe'];
419 $this->doc .= $lang['doublequoteopening'];
424 $this->doc .= $lang['doublequoteclosing'];
428 $this->internallink($link,$link);
432 $name = $this->_getLinkTitle($name, $hash, $isImage);
433 $this->doc .= $name;;
439 $default = $this->_simpleTitle($id);
441 $name = $this->_getLinkTitle($name, $default, $isImage, $id, $linktype);
445 $this->doc .= $name;
450 $this->doc .= $this->_getLinkTitle($name, $url, $isImage);
454 $this->doc .= $this->_getLinkTitle($name, $wikiUri, $isImage);
458 $this->doc .= $this->_getLinkTitle($name, $url, $isImage);
462 $name = $this->_getLinkTitle($name, '', $isImage);
467 $this->doc .= $name;
472 $this->doc .= $title;
477 $this->doc .= $title;
494 $this->doc .= DOKU_LF;
522 $this->separator = '';
526 $this->doc .= DOKU_LF;
530 $this->tablecell_open();
534 $this->tablecell_close();
538 $this->nSpan = $colspan;
539 $this->doc .= $this->separator;
540 $this->separator = ', ';
544 if ($this->nSpan > 0) {
545 $this->doc .= str_repeat(',', $this->nSpan - 1);
547 $this->nSpan = 0;
562 return $this->_xmlEntities($heading);
565 return $this->_xmlEntities($default);
567 return $this->_xmlEntities($title);