Home
last modified time | relevance | path

Searched refs:callWriter (Results 1 – 8 of 8) sorted by relevance

/dokuwiki/inc/Parsing/Handler/
H A DAbstractRewriter.php11 protected $callWriter; variable in dokuwiki\\Parsing\\Handler\\AbstractRewriter
17 public function __construct(CallWriterInterface $callWriter) argument
19 $this->callWriter = $callWriter;
37 return $this->callWriter;
52 $this->callWriter->finalise();
53 unset($this->callWriter);
H A DPreformatted.php32 $this->callWriter->writeCall(['preformatted', [$this->text], $this->pos]);
35 $this->callWriter->writeCall(['eol', [], $this->pos]);
36 $this->callWriter->writeCall(['eol', [], $this->pos]);
41 return $this->callWriter;
H A DReWriterInterface.php19 * @param CallWriterInterface $callWriter the original callwriter
21 public function __construct(CallWriterInterface $callWriter); argument
H A DNest.php56 $this->callWriter->writeCall(["nest", [$this->calls], $first_call[2]]);
58 return $this->callWriter;
H A DQuote.php59 $this->callWriter->writeCalls($this->quoteCalls);
68 return $this->callWriter;
H A DLists.php33 $this->callWriter->writeCalls($this->listCalls);
34 return $this->callWriter;
H A DTable.php48 $this->callWriter->writeCalls($this->tableCalls);
50 return $this->callWriter;
/dokuwiki/inc/Parsing/
H A DHandler.php23 protected $callWriter; variable in dokuwiki\\Parsing\\Handler
46 $this->callWriter = new CallWriter($this);
119 $this->callWriter->writeCall($call);
129 return $this->callWriter;
135 * @param CallWriterInterface $callWriter
137 public function setCallWriter($callWriter) argument
139 $this->callWriter = $callWriter;
185 $this->callWriter->writeCall($call);
198 $this->callWriter->finalise();