mirror of
https://github.com/ezyang/htmlpurifier.git
synced 2024-11-10 07:38:41 +00:00
20 lines
600 B
PHP
20 lines
600 B
PHP
|
<?php
|
||
|
|
||
|
require_once 'HTMLPurifier/Strategy/Composite.php';
|
||
|
|
||
|
require_once 'HTMLPurifier/Strategy/RemoveForeignElements.php';
|
||
|
require_once 'HTMLPurifier/Strategy/MakeWellFormed.php';
|
||
|
require_once 'HTMLPurifier/Strategy/FixNesting.php';
|
||
|
|
||
|
class HTMLPurifier_Strategy_Core extends HTMLPurifier_Strategy_Composite
|
||
|
{
|
||
|
|
||
|
function HTMLPurifier_Strategy_Core() {
|
||
|
$this->strategies[] = new HTMLPurifier_Strategy_RemoveForeignElements();
|
||
|
$this->strategies[] = new HTMLPurifier_Strategy_MakeWellFormed();
|
||
|
$this->strategies[] = new HTMLPurifier_Strategy_FixNesting();
|
||
|
}
|
||
|
|
||
|
}
|
||
|
|
||
|
?>
|