Whoops, forgot to edit WHATSNEW
[htmlpurifier.git] / library / HTMLPurifier / Strategy / Composite.php
blobd7d35ce7d11a6b3e5019372625dc858da314ee87
1 <?php
3 /**
4 * Composite strategy that runs multiple strategies on tokens.
5 */
6 abstract class HTMLPurifier_Strategy_Composite extends HTMLPurifier_Strategy
9 /**
10 * List of strategies to run tokens through.
11 * @type HTMLPurifier_Strategy[]
13 protected $strategies = array();
15 /**
16 * @param HTMLPurifier_Token[] $tokens
17 * @param HTMLPurifier_Config $config
18 * @param HTMLPurifier_Context $context
19 * @return HTMLPurifier_Token[]
21 public function execute($tokens, $config, $context)
23 foreach ($this->strategies as $strategy) {
24 $tokens = $strategy->execute($tokens, $config, $context);
26 return $tokens;
30 // vim: et sw=4 sts=4