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