mirror of
https://github.com/ezyang/htmlpurifier.git
synced 2024-11-10 07:38:41 +00:00
238678871e
- Defined new directive %Core.EscapeInvalidChildren, for previously commented out functionality - Removed convenience configuration generation: you *have* to pass it unless you're interfacing with HTMLPurifier - Homogenized function parameters even when only a few of them are used - Rewrote unit tests that expected previous behavior - Introduced configuration object to ChildDef tests git-svn-id: http://htmlpurifier.org/svnroot/htmlpurifier/trunk@243 48356398-32a2-884e-a903-53898d9a118a
24 lines
512 B
PHP
24 lines
512 B
PHP
<?php
|
|
|
|
require_once 'HTMLPurifier/Strategy.php';
|
|
require_once 'HTMLPurifier/Config.php';
|
|
|
|
class HTMLPurifier_Strategy_Composite
|
|
{
|
|
|
|
var $strategies = array();
|
|
|
|
function HTMLPurifier_Strategy_Composite() {
|
|
trigger_error('Attempt to instantiate abstract object', E_USER_ERROR);
|
|
}
|
|
|
|
function execute($tokens, $config) {
|
|
foreach ($this->strategies as $strategy) {
|
|
$tokens = $strategy->execute($tokens, $config);
|
|
}
|
|
return $tokens;
|
|
}
|
|
|
|
}
|
|
|
|
?>
|