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