mirror of
https://github.com/ezyang/htmlpurifier.git
synced 2024-11-10 07:38:41 +00:00
8f515b9cda
- Partially finished migrating to new Context object (done in r485). - Created HTMLPurifier_Harness to assist with testing, ChildDefTest migrated to that framework. git-svn-id: http://htmlpurifier.org/svnroot/htmlpurifier/trunk@484 48356398-32a2-884e-a903-53898d9a118a
30 lines
699 B
PHP
30 lines
699 B
PHP
<?php
|
|
|
|
require_once 'HTMLPurifier/Strategy.php';
|
|
require_once 'HTMLPurifier/Config.php';
|
|
|
|
/**
|
|
* Composite strategy that runs multiple strategies on tokens.
|
|
*/
|
|
class HTMLPurifier_Strategy_Composite extends HTMLPurifier_Strategy
|
|
{
|
|
|
|
/**
|
|
* List of strategies to run tokens through.
|
|
*/
|
|
var $strategies = array();
|
|
|
|
function HTMLPurifier_Strategy_Composite() {
|
|
trigger_error('Attempt to instantiate abstract object', E_USER_ERROR);
|
|
}
|
|
|
|
function execute($tokens, $config, &$context) {
|
|
foreach ($this->strategies as $strategy) {
|
|
$tokens = $strategy->execute($tokens, $config, $context);
|
|
}
|
|
return $tokens;
|
|
}
|
|
|
|
}
|
|
|
|
?>
|