1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2025-12-16 08:35:57 +00:00

remove htmlpurifier

This commit is contained in:
Andrew Dolgov
2012-06-01 00:07:59 +04:00
parent 65dd90f2ba
commit c21a462d52
356 changed files with 4 additions and 26185 deletions

View File

@@ -1,23 +0,0 @@
<?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();
public function execute($tokens, $config, $context) {
foreach ($this->strategies as $strategy) {
$tokens = $strategy->execute($tokens, $config, $context);
}
return $tokens;
}
}
// vim: et sw=4 sts=4