0
0
mirror of https://github.com/ezyang/htmlpurifier.git synced 2024-09-20 11:15:18 +00:00
htmlpurifier/library/HTMLPurifier/Strategy/Composite.php
Edward Z. Yang 9b7ad89ab5 - Added Composite and Core strategies.
- Added generate_mock() function for testing
- Factored out inputs/output tests to StrategyAbstractTest

git-svn-id: http://htmlpurifier.org/svnroot/htmlpurifier/trunk@124 48356398-32a2-884e-a903-53898d9a118a
2006-07-29 17:38:28 +00:00

23 lines
454 B
PHP

<?php
require_once 'HTMLPurifier/Strategy.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) {
foreach ($this->strategies as $strategy) {
$tokens = $strategy->execute($tokens);
}
return $tokens;
}
}
?>