mirror of
https://github.com/ezyang/htmlpurifier.git
synced 2024-11-10 07:38:41 +00:00
43f01925cd
git-svn-id: http://htmlpurifier.org/svnroot/htmlpurifier/trunk@1458 48356398-32a2-884e-a903-53898d9a118a
28 lines
629 B
PHP
28 lines
629 B
PHP
<?php
|
|
|
|
require_once 'HTMLPurifier/Strategy.php';
|
|
require_once 'HTMLPurifier/Config.php';
|
|
|
|
/**
|
|
* Composite strategy that runs multiple strategies on tokens.
|
|
*/
|
|
abstract class HTMLPurifier_Strategy_Composite extends HTMLPurifier_Strategy
|
|
{
|
|
|
|
/**
|
|
* List of strategies to run tokens through.
|
|
*/
|
|
protected $strategies = array();
|
|
|
|
abstract public function __construct();
|
|
|
|
public function execute($tokens, $config, &$context) {
|
|
foreach ($this->strategies as $strategy) {
|
|
$tokens = $strategy->execute($tokens, $config, $context);
|
|
}
|
|
return $tokens;
|
|
}
|
|
|
|
}
|
|
|