xref: /dokuwiki/inc/Parsing/ParserMode/Nocache.php (revision c6639e6a6a4b11d65ecbc19f1bbbf2d9b32d0c19)
1<?php
2
3namespace dokuwiki\Parsing\ParserMode;
4
5class Nocache extends AbstractMode
6{
7
8    /** @inheritdoc */
9    public function connectTo($mode)
10    {
11        $this->Lexer->addSpecialPattern('~~NOCACHE~~', $mode, 'nocache');
12    }
13
14    /** @inheritdoc */
15    public function getSort()
16    {
17        return 40;
18    }
19}
20