Lines Matching refs:decorator

15 class decorator extends Doku_Renderer {  class
21 protected $decorator; variable in decorator
25 * @param decorator The next decorator layer.
27 function __construct($decorator) { argument
28 $this->decorator = $decorator;
125 $this->decorator->input($link);
135 $this->decorator->table_cline($start, $end);
149 $this->decorator->appendCommand($command, $scope, $argument);
163 $this->decorator->appendInlineCommand($command, $scope, $argument);
172 $this->decorator->appendContent($c);
195 $this->decorator->mathjax_content($formula);
205 $this->decorator->anchor($link, $title);
223 $this->decorator->document_start($pageId, $recursionLevel);
231 $this->decorator->document_end($recursionLevel);
241 $this->decorator->render_TOC();
253 $this->decorator->toc_additem($id, $text, $level);
265 $this->decorator->header($text, $level, $pos);
275 $this->decorator->section_open($level);
283 $this->decorator->section_close($level);
293 $this->decorator->cdata($text);
301 $this->decorator->p_open();
309 $this->decorator->p_close();
317 $this->decorator->linebreak();
325 $this->decorator->hr();
333 $this->decorator->strong_open();
341 $this->decorator->strong_close();
349 $this->decorator->emphasis_open();
357 $this->decorator->emphasis_close();
365 $this->decorator->underline_open();
373 $this->decorator->underline_close();
381 $this->decorator->monospace_open();
389 $this->decorator->monospace_close();
397 $this->decorator->subscript_open();
405 $this->decorator->subscript_close();
413 $this->decorator->superscript_open();
421 $this->decorator->superscript_close();
429 $this->decorator->deleted_open();
437 $this->decorator->deleted_close();
445 $this->decorator->footnote_open();
453 $this->decorator->footnote_close();
461 $this->decorator->listu_open();
469 $this->decorator->listu_close();
477 $this->decorator->listo_open();
485 $this->decorator->listo_close();
496 $this->decorator->listitem_open($level, $node);
504 $this->decorator->listcontent_open();
512 $this->decorator->listcontent_close();
520 $this->decorator->listitem_close();
531 $this->decorator->unformatted($text);
541 $this->decorator->php($text);
551 $this->decorator->phpblock($text);
563 $this->decorator->html($text);
575 $this->decorator->htmlblock($text);
585 $this->decorator->preformatted($text);
593 $this->decorator->quote_open();
601 $this->decorator->quote_close();
613 $this->decorator->file($text, $lang, $file);
625 $this->decorator->code($text, $lang, $file);
637 $this->decorator->acronym($acronym);
649 $this->decorator->smiley($smiley);
663 $this->decorator->entity($entity);
676 $this->decorator->multiplyentity($x, $y);
684 $this->decorator->singlequoteopening();
692 $this->decorator->singlequoteclosing();
700 $this->decorator->apostrophe();
708 $this->decorator->doublequoteopening();
716 $this->decorator->doublequoteclosing();
727 $this->decorator->camelcaselink($link);
738 $this->decorator->locallink($hash, $name);
750 $this->decorator->internallink($link, $title);
761 $this->decorator->externallink($link, $title);
772 $this->decorator->rss($link, $title);
787 $this->decorator->interwikilink($link, $title, $wikiName, $wikiUri);
798 $this->decorator->filelink($link, $title);
809 $this->decorator->windowssharelink($link, $title);
822 $this->decorator->emaillink($address, $name);
841 …$this->decorator->internalmedia($src, $title, $align, $width, $height, $cache, $linking, $position…
858 $this->decorator->externalmedia($src, $title, $align, $width, $height, $cache, $linking);
874 $this->decorator->internalmedialink($src, $title, $align, $width, $height, $cache);
890 $this->decorator->externalmedialink($src, $title, $align, $width, $height, $cache);
902 $this->decorator->table_open($maxcols, $numrows, $pos);
912 $this->decorator->table_close($pos);
920 $this->decorator->any_command();
928 $this->decorator->tablethead_close();
936 $this->decorator->tabletbody_open();
944 $this->decorator->tabletbody_close();
952 $this->decorator->tabletfoot_open();
960 $this->decorator->tabletfoot_close();
968 $this->decorator->tablerow_open();
976 $this->decorator->tablerow_close();
988 $this->decorator->tableheader_open($colspan, $align, $rowspan);
996 $this->decorator->tableheader_close();
1008 $this->decorator->tablecell_open($colspan, $align, $rowspan);
1016 $this->decorator->tablecell_close();