Conditions | 1 |
Paths | 1 |
Total Lines | 14 |
Code Lines | 10 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
11 | public function __construct() |
||
12 | { |
||
13 | global $PARSER_MODES; |
||
14 | |||
15 | $this->allowedModes = array_merge( |
||
16 | $PARSER_MODES['container'], |
||
17 | $PARSER_MODES['baseonly'], |
||
18 | $PARSER_MODES['paragraphs'], |
||
19 | $PARSER_MODES['formatting'], |
||
20 | $PARSER_MODES['substition'], |
||
21 | $PARSER_MODES['protected'], |
||
22 | $PARSER_MODES['disabled'] |
||
23 | ); |
||
24 | } |
||
25 | |||
32 |