xref: /dokuwiki/inc/Parsing/ParserMode/Quote.php (revision d4f83172d9533c4d84f450fe22ef630816b21d75)
1*be906b56SAndreas Gohr<?php
2*be906b56SAndreas Gohr
3*be906b56SAndreas Gohrnamespace dokuwiki\Parsing\ParserMode;
4*be906b56SAndreas Gohr
5*be906b56SAndreas Gohrclass Quote extends AbstractMode
6*be906b56SAndreas Gohr{
7*be906b56SAndreas Gohr    /**
8*be906b56SAndreas Gohr     * Quote constructor.
9*be906b56SAndreas Gohr     */
10*be906b56SAndreas Gohr    public function __construct()
11*be906b56SAndreas Gohr    {
12*be906b56SAndreas Gohr        global $PARSER_MODES;
13*be906b56SAndreas Gohr
14*be906b56SAndreas Gohr        $this->allowedModes = array_merge(
15*be906b56SAndreas Gohr            $PARSER_MODES['formatting'],
16*be906b56SAndreas Gohr            $PARSER_MODES['substition'],
17*be906b56SAndreas Gohr            $PARSER_MODES['disabled'],
18*be906b56SAndreas Gohr            $PARSER_MODES['protected']
19*be906b56SAndreas Gohr        );
20*be906b56SAndreas Gohr    }
21*be906b56SAndreas Gohr
22*be906b56SAndreas Gohr    /** @inheritdoc */
23*be906b56SAndreas Gohr    public function connectTo($mode)
24*be906b56SAndreas Gohr    {
25*be906b56SAndreas Gohr        $this->Lexer->addEntryPattern('\n>{1,}', $mode, 'quote');
26*be906b56SAndreas Gohr    }
27*be906b56SAndreas Gohr
28*be906b56SAndreas Gohr    /** @inheritdoc */
29*be906b56SAndreas Gohr    public function postConnect()
30*be906b56SAndreas Gohr    {
31*be906b56SAndreas Gohr        $this->Lexer->addPattern('\n>{1,}', 'quote');
32*be906b56SAndreas Gohr        $this->Lexer->addExitPattern('\n', 'quote');
33*be906b56SAndreas Gohr    }
34*be906b56SAndreas Gohr
35*be906b56SAndreas Gohr    /** @inheritdoc */
36*be906b56SAndreas Gohr    public function getSort()
37*be906b56SAndreas Gohr    {
38*be906b56SAndreas Gohr        return 220;
39*be906b56SAndreas Gohr    }
40*be906b56SAndreas Gohr}
41