| /dokuwiki/inc/Parsing/ParserMode/ |
| H A D | Table.php | 62 $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 D | Internallink.php | 41 $handler->addCall( 48 $handler->addCall( 55 $handler->addCall( 62 $handler->addCall( 69 $handler->addCall( 76 $handler->addCall(
|
| H A D | Footnote.php | 60 $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 D | Quote.php | 49 $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 D | Preformatted.php | 43 $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 D | Header.php | 36 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 D | Listblock.php | 60 $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 D | AbstractFormatting.php | 78 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 D | Nocache.php | 24 $handler->addCall('nocache', [], $pos);
|
| H A D | Linebreak.php | 24 $handler->addCall('linebreak', [], $pos);
|
| H A D | Hr.php | 24 $handler->addCall('hr', [], $pos);
|
| H A D | Notoc.php | 24 $handler->addCall('notoc', [], $pos);
|
| H A D | Camelcaselink.php | 28 $handler->addCall('camelcaselink', [$match], $pos);
|
| H A D | Multiplyentity.php | 33 $handler->addCall('multiplyentity', [$matches[0][0], $matches[0][1]], $pos);
|
| H A D | Emaillink.php | 26 $handler->addCall('emaillink', [$email, null], $pos);
|
| H A D | Eol.php | 30 $handler->addCall('eol', [], $pos);
|
| H A D | Windowssharelink.php | 36 $handler->addCall('windowssharelink', [$match, null], $pos);
|
| H A D | Filelink.php | 43 $handler->addCall('filelink', [$match, null], $pos);
|
| H A D | Unformatted.php | 34 $handler->addCall('unformatted', [$match], $pos);
|
| H A D | Base.php | 36 $handler->addCall('cdata', [$match], $pos);
|
| H A D | Wordblock.php | 57 $handler->addCall('wordblock', [$match], $pos);
|
| H A D | Smiley.php | 53 $handler->addCall('smiley', [$match], $pos);
|
| /dokuwiki/inc/Parsing/Handler/ |
| H A D | Nest.php | 53 foreach ($unmerged_calls as $call) $this->addCall($call); 64 protected function addCall($call) function in dokuwiki\\Parsing\\Handler\\Nest
|
| H A D | Block.php | 110 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 D | ClientMulticall.php | 20 public function addCall() function in IXR\\Client\\ClientMulticall
|