ILIAS  release_4-4 Revision
All Data Structures Namespaces Files Functions Variables Modules Pages
HTMLPurifier_Strategy_Composite Class Reference

Composite strategy that runs multiple strategies on tokens. More...

+ Inheritance diagram for HTMLPurifier_Strategy_Composite:
+ Collaboration diagram for HTMLPurifier_Strategy_Composite:

Public Member Functions

 execute ($tokens, $config, $context)
 
- Public Member Functions inherited from HTMLPurifier_Strategy
 execute ($tokens, $config, $context)
 Executes the strategy on the tokens. More...
 

Protected Attributes

 $strategies = array()
 List of strategies to run tokens through. More...
 

Detailed Description

Composite strategy that runs multiple strategies on tokens.

Definition at line 6 of file Composite.php.

Member Function Documentation

◆ execute()

HTMLPurifier_Strategy_Composite::execute (   $tokens,
  $config,
  $context 
)

Definition at line 14 of file Composite.php.

14  {
15  foreach ($this->strategies as $strategy) {
16  $tokens = $strategy->execute($tokens, $config, $context);
17  }
18  return $tokens;
19  }

Field Documentation

◆ $strategies

HTMLPurifier_Strategy_Composite::$strategies = array()
protected

List of strategies to run tokens through.

Definition at line 12 of file Composite.php.


The documentation for this class was generated from the following file: