ILIAS
Release_4_0_x_branch Revision 61816
◀ ilDoc Overview
Main Page
Related Pages
Modules
Namespaces
Data Structures
Files
Examples
File List
Globals
All
Data Structures
Namespaces
Files
Functions
Variables
Groups
Pages
Composite.php
Go to the documentation of this file.
1
<?php
2
6
abstract
class
HTMLPurifier_Strategy_Composite
extends
HTMLPurifier_Strategy
7
{
8
12
protected
$strategies
= array();
13
14
abstract
public
function
__construct
();
15
16
public
function
execute
($tokens,
$config
, $context) {
17
foreach
($this->strategies as $strategy) {
18
$tokens = $strategy->execute($tokens,
$config
, $context);
19
}
20
return
$tokens;
21
}
22
23
}
24
25
// vim: et sw=4 sts=4
Services
Html
HtmlPurifier
library
HTMLPurifier
Strategy
Composite.php
Generated on Wed Apr 27 2016 19:01:41 for ILIAS by
1.8.1.2 (using
Doxyfile
)