xref: /dokuwiki/inc/Parsing/ParserMode/Nocache.php (revision 5aa905e95e0f4ee1de1d93da15dbd388e985c134)
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