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