| /dokuwiki/inc/Parsing/Handler/ |
| H A D | CallWriter.php | 3 namespace dokuwiki\Parsing\Handler; 5 use dokuwiki\Parsing\Handler; alias 9 /** @var Handler $Handler */ 10 protected $Handler; variable in dokuwiki\\Parsing\\Handler\\CallWriter 13 * @param Handler $Handler 15 public function __construct(Handler $Handler) argument 17 $this->Handler = $Handler; 23 $this->Handler->calls[] = $call; 29 $this->Handler->calls = array_merge($this->Handler->calls, $calls); 39 unset($this->Handler);
|
| /dokuwiki/_test/tests/Parsing/ |
| H A D | HandlerTest.php | 5 use dokuwiki\Parsing\Handler; alias 12 $handler = new Handler(new ModeRegistry('dw')); 18 public function handle($match, $state, $pos, Handler $handler) 35 $handler = new Handler(new ModeRegistry('dw')); 40 public function handle($match, $state, $pos, Handler $handler) 57 $handler = new Handler(new ModeRegistry('dw')); 73 public function handle($match, $state, $pos, Handler $handler) 95 $this->assertInstanceOf(\dokuwiki\Parsing\Handler\CallWriter::class, $writerAfter); 111 $handler = new Handler(new ModeRegistry('dw'));
|
| /dokuwiki/inc/Extension/ |
| H A D | SyntaxPlugin.php | 5 use dokuwiki\Parsing\Handler; alias 73 * @param Handler $handler The Handler object 76 abstract public function handle($match, $state, $pos, Handler $handler);
|
| /dokuwiki/_test/tests/Parsing/ParserMode/ |
| H A D | ParserTestBase.php | 5 use dokuwiki\Parsing\Handler; alias 19 /** @var Handler handler instance that records calls made by the parser */ 20 protected Handler $H; 42 $this->H = new Handler($this->registry);
|
| /dokuwiki/inc/Parsing/ParserMode/ |
| H A D | Nocache.php | 5 use dokuwiki\Parsing\Handler; alias 22 public function handle($match, $state, $pos, Handler $handler)
|
| H A D | Linebreak.php | 5 use dokuwiki\Parsing\Handler; alias 22 public function handle($match, $state, $pos, Handler $handler)
|
| H A D | Notoc.php | 5 use dokuwiki\Parsing\Handler; alias 22 public function handle($match, $state, $pos, Handler $handler)
|
| H A D | GfmLinebreak.php | 5 use dokuwiki\Parsing\Handler; alias 52 public function handle($match, $state, $pos, Handler $handler)
|
| H A D | Camelcaselink.php | 5 use dokuwiki\Parsing\Handler; alias 26 public function handle($match, $state, $pos, Handler $handler)
|
| H A D | Multiplyentity.php | 5 use dokuwiki\Parsing\Handler; alias 30 public function handle($match, $state, $pos, Handler $handler)
|
| H A D | Eol.php | 5 use dokuwiki\Parsing\Handler; alias 27 public function handle($match, $state, $pos, Handler $handler)
|
| H A D | GfmHr.php | 5 use dokuwiki\Parsing\Handler; alias 44 public function handle($match, $state, $pos, Handler $handler)
|
| H A D | Windowssharelink.php | 5 use dokuwiki\Parsing\Handler; alias 34 public function handle($match, $state, $pos, Handler $handler)
|
| H A D | GfmHtmlEntity.php | 5 use dokuwiki\Parsing\Handler; alias 54 public function handle($match, $state, $pos, Handler $handler)
|
| H A D | Emaillink.php | 6 use dokuwiki\Parsing\Handler; alias 23 public function handle($match, $state, $pos, Handler $handler)
|
| H A D | GfmEscape.php | 5 use dokuwiki\Parsing\Handler; alias 69 public function handle($match, $state, $pos, Handler $handler)
|
| H A D | Base.php | 5 use dokuwiki\Parsing\Handler; alias 31 public function handle($match, $state, $pos, Handler $handler)
|
| H A D | Filelink.php | 5 use dokuwiki\Parsing\Handler; alias 41 public function handle($match, $state, $pos, Handler $handler)
|
| H A D | Unformatted.php | 5 use dokuwiki\Parsing\Handler; alias 31 public function handle($match, $state, $pos, Handler $handler)
|
| H A D | GfmEmphasisStrong.php | 5 use dokuwiki\Parsing\Handler; alias 66 public function handle($match, $state, $pos, Handler $handler)
|
| H A D | Listblock.php | 5 use dokuwiki\Parsing\Handler; alias 6 use dokuwiki\Parsing\Handler\Lists; 51 public function handle($match, $state, $pos, Handler $handler)
|
| H A D | Preformatted.php | 5 use dokuwiki\Parsing\Handler; alias 6 use dokuwiki\Parsing\Handler\Preformatted as PreformattedHandler; 76 public function handle($match, $state, $pos, Handler $handler)
|
| H A D | GfmTable.php | 5 use dokuwiki\Parsing\Handler; alias 6 use dokuwiki\Parsing\Handler\GfmTable as GfmTableRewriter; 123 public function handle($match, $state, $pos, Handler $handler)
|
| H A D | Footnote.php | 5 use dokuwiki\Parsing\Handler; alias 6 use dokuwiki\Parsing\Handler\Nest; 59 public function handle($match, $state, $pos, Handler $handler)
|
| /dokuwiki/_test/tests/Parsing/Lexer/ |
| H A D | RecordingHandler.php | 5 use dokuwiki\Parsing\Handler; alias 11 class RecordingHandler extends Handler
|