Home
last modified time | relevance | path

Searched refs:addCall (Results 1 – 25 of 32) sorted by relevance

12

/dokuwiki/inc/Parsing/ParserMode/
H A DTable.php62 $handler->addCall('table_start', [$pos + 1], $pos);
64 $handler->addCall('tableheader', [], $pos);
66 $handler->addCall('tablecell', [], $pos);
71 $handler->addCall('table_end', [$pos], $pos);
79 $handler->addCall('cdata', [$match], $pos);
85 $handler->addCall('cdata', [$match], $pos);
87 $handler->addCall('rowspan', [$match], $pos);
89 $handler->addCall('table_align', [$match], $pos);
91 $handler->addCall('table_align', [$match], $pos);
93 $handler->addCall('table_row', [], $pos);
[all …]
H A DInternallink.php41 $handler->addCall(
48 $handler->addCall(
55 $handler->addCall(
62 $handler->addCall(
69 $handler->addCall(
76 $handler->addCall(
H A DFootnote.php60 $handler->addCall('cdata', [$match], $pos);
66 $handler->addCall('footnote_open', [], $pos);
71 $handler->addCall('cdata', [$match], $pos);
76 $handler->addCall('footnote_close', [], $pos);
83 $handler->addCall('cdata', [$match], $pos);
H A DQuote.php49 $handler->addCall('quote_start', [$match], $pos);
53 $handler->addCall('quote_end', [], $pos);
60 $handler->addCall('quote_newline', [$match], $pos);
64 $handler->addCall('cdata', [$match], $pos);
H A DPreformatted.php43 $handler->addCall('preformatted_start', [], $pos);
46 $handler->addCall('preformatted_end', [], $pos);
52 $handler->addCall('preformatted_newline', [], $pos);
55 $handler->addCall('preformatted_content', [$match], $pos);
H A DHeader.php36 if ($handler->getStatus('section')) $handler->addCall('section_close', [], $pos);
38 $handler->addCall('header', [$title, $level, $pos], $pos);
40 $handler->addCall('section_open', [$level], $pos);
H A DListblock.php60 $handler->addCall('list_open', [$match], $pos);
63 $handler->addCall('list_close', [], $pos);
69 $handler->addCall('list_item', [$match], $pos);
72 $handler->addCall('cdata', [$match], $pos);
H A DAbstractFormatting.php78 DOKU_LEXER_ENTER => $handler->addCall($name . '_open', [], $pos),
79 DOKU_LEXER_EXIT => $handler->addCall($name . '_close', [], $pos),
80 DOKU_LEXER_UNMATCHED => $handler->addCall('cdata', [$match], $pos),
H A DNocache.php24 $handler->addCall('nocache', [], $pos);
H A DLinebreak.php24 $handler->addCall('linebreak', [], $pos);
H A DHr.php24 $handler->addCall('hr', [], $pos);
H A DNotoc.php24 $handler->addCall('notoc', [], $pos);
H A DCamelcaselink.php28 $handler->addCall('camelcaselink', [$match], $pos);
H A DMultiplyentity.php33 $handler->addCall('multiplyentity', [$matches[0][0], $matches[0][1]], $pos);
H A DEmaillink.php26 $handler->addCall('emaillink', [$email, null], $pos);
H A DEol.php30 $handler->addCall('eol', [], $pos);
H A DWindowssharelink.php36 $handler->addCall('windowssharelink', [$match, null], $pos);
H A DFilelink.php43 $handler->addCall('filelink', [$match, null], $pos);
H A DUnformatted.php34 $handler->addCall('unformatted', [$match], $pos);
H A DBase.php36 $handler->addCall('cdata', [$match], $pos);
H A DWordblock.php57 $handler->addCall('wordblock', [$match], $pos);
H A DSmiley.php53 $handler->addCall('smiley', [$match], $pos);
/dokuwiki/inc/Parsing/Handler/
H A DNest.php53 foreach ($unmerged_calls as $call) $this->addCall($call);
64 protected function addCall($call) function in dokuwiki\\Parsing\\Handler\\Nest
H A DBlock.php110 protected function addCall($call) function in dokuwiki\\Parsing\\Handler\\Block
187 $this->addCall(['cdata', ["\n"], $call[2]]);
193 $this->addCall($call);
/dokuwiki/vendor/kissifrot/php-ixr/src/Client/
H A DClientMulticall.php20 public function addCall() function in IXR\\Client\\ClientMulticall

12