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