Conditions | 1 |
Paths | 1 |
Total Lines | 8 |
Lines | 0 |
Ratio | 0 % |
Tests | 6 |
CRAP Score | 1 |
Changes | 0 |
1 | <?php |
||
31 | 4 | public function __construct() { |
|
32 | 4 | $config = HTMLPurifier_Config::createDefault(); |
|
33 | |||
34 | 4 | $config->set( 'HTML.Allowed', self::ALLOWED_HTML_TAGS ); |
|
35 | 4 | $config->set( 'Attr.AllowedFrameTargets', [ '_blank' ] ); // allow target="_blank" hrefs |
|
36 | |||
37 | 4 | $this->purifier = new HTMLPurifier( $config ); |
|
38 | 4 | } |
|
39 | |||
45 |