Cheetah
|
Public Member Functions | |
execute ($tokens, $config, $context) | |
Protected Member Functions | |
processToken ($token, $injector=-1) | |
Protected Attributes | |
$tokens | |
$token | |
$zipper | |
$stack | |
$injectors | |
$config | |
$context | |
Takes tokens makes them well-formed (balance end tags, etc.)
Specification of the armor attributes this strategy uses:
- MakeWellFormed_TagClosedError: This armor field is used to suppress tag closed errors for certain tokens [TagClosedSuppress], in particular, if a tag was generated automatically by HTML Purifier, we may rely on our infrastructure to close it for us and shouldn't report an error to the user [TagClosedAuto].
Definition at line 20191 of file HTMLPurifier.standalone.php.
HTMLPurifier_Strategy_MakeWellFormed::execute | ( | $tokens, | |
$config, | |||
$context | |||
) |
HTMLPurifier_Token[] | $tokens | |
HTMLPurifier_Config | $config | |
HTMLPurifier_Context | $context |
HTMLPurifier_Exception |
Reimplemented from HTMLPurifier_Strategy.
Definition at line 20243 of file HTMLPurifier.standalone.php.
|
protected |
Processes arbitrary token values for complicated substitution patterns. In general:
If $token is an array, it is a list of tokens to substitute for the current token. These tokens then get individually processed. If there is a leading integer in the list, that integer determines how many tokens from the stream should be removed.
If $token is a regular token, it is swapped with the current token.
If $token is false, the current token is deleted.
If $token is an integer, that number of tokens (with the first token being the current one) will be deleted.
HTMLPurifier_Token | array | int | bool | $token | Token substitution value |
HTMLPurifier_Injector | int | $injector | Injector that performed the substitution; default is if this is not an injector related operation. |
HTMLPurifier_Exception |
Definition at line 20715 of file HTMLPurifier.standalone.php.
|
protected |
Current instance of HTMLPurifier_Config. @type HTMLPurifier_Config
Definition at line 20228 of file HTMLPurifier.standalone.php.
|
protected |
Current instance of HTMLPurifier_Context. @type HTMLPurifier_Context
Definition at line 20234 of file HTMLPurifier.standalone.php.
|
protected |
Injectors active in this stream processing. @type HTMLPurifier_Injector[]
Definition at line 20222 of file HTMLPurifier.standalone.php.
|
protected |
Current nesting of elements. @type array
Definition at line 20216 of file HTMLPurifier.standalone.php.
|
protected |
Current token. @type HTMLPurifier_Token
Definition at line 20204 of file HTMLPurifier.standalone.php.
|
protected |
Array stream of tokens being processed. @type HTMLPurifier_Token[]
Definition at line 20198 of file HTMLPurifier.standalone.php.
|
protected |
Zipper managing the true state. @type HTMLPurifier_Zipper
Definition at line 20210 of file HTMLPurifier.standalone.php.