| Conditions | 1 |
| Paths | 1 |
| Total Lines | 14 |
| Code Lines | 9 |
| 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['formatting'], |
||
| 18 | $PARSER_MODES['substition'], |
||
| 19 | $PARSER_MODES['protected'], |
||
| 20 | $PARSER_MODES['disabled'] |
||
| 21 | ); |
||
| 22 | |||
| 23 | unset($this->allowedModes[array_search('footnote', $this->allowedModes)]); |
||
| 24 | } |
||
| 25 | |||
| 51 |