HTMLPurifier_Injector_RemoveEmpty
Injects tokens into the document while parsing for well-formedness.
This enables "formatter-like" functionality such as auto-paragraphing, smiley-ification and linkification to take place.
A note on how handlers create changes; this is done by assigning a new value to the $token reference. These values can take a variety of forms and are best described HTMLPurifier_Strategy_MakeWellFormed->processToken() documentation.
- Full name:
\HTMLPurifier_Injector_RemoveEmpty
- Parent class:
\HTMLPurifier_Injector
Properties
context
config
attrValidator
removeNbsp
removeNbspExceptions
exclude
Cached contents of %AutoFormat.RemoveEmpty.Predicate
Methods
prepare
Prepares the injector by giving it the config and context objects: this allows references to important variables to be made within the injector. This function also checks if the HTML environment will work with the Injector (see checkNeeded()).
Parameters:
Parameter | Type | Description |
---|---|---|
$config |
\HTMLPurifier_Config | |
$context |
\HTMLPurifier_Context |
handleElement
Handler that is called when a start or empty token is processed
Parameters:
Parameter | Type | Description |
---|---|---|
$token |
\HTMLPurifier_Token |
Inherited methods
rewindOffset
Rewind to a spot to re-perform processing. This is useful if you deleted a node, and now need to see if this change affected any earlier nodes. Rewinding does not affect other injectors, and can result in infinite loops if not used carefully.
Parameters:
Parameter | Type | Description |
---|---|---|
$offset |
bool|int |
getRewindOffset
Retrieves rewind offset, and then unsets it.
prepare
Prepares the injector by giving it the config and context objects: this allows references to important variables to be made within the injector. This function also checks if the HTML environment will work with the Injector (see checkNeeded()).
Parameters:
Parameter | Type | Description |
---|---|---|
$config |
\HTMLPurifier_Config | |
$context |
\HTMLPurifier_Context |
Return Value:
Boolean false if success, string of missing needed element/attribute if failure
checkNeeded
This function checks if the HTML environment will work with the Injector: if p tags are not allowed, the Auto-Paragraphing injector should not be enabled.
Parameters:
Parameter | Type | Description |
---|---|---|
$config |
\HTMLPurifier_Config |
Return Value:
Boolean false if success, string of missing needed element/attribute if failure
allowsElement
Tests if the context node allows a certain element
Parameters:
Parameter | Type | Description |
---|---|---|
$name |
string | Name of element to test for |
Return Value:
True if element is allowed, false if it is not
forward
Iterator function, which starts with the next token and continues until you reach the end of the input tokens.
Parameters:
Parameter | Type | Description |
---|---|---|
$i |
int | Current integer index variable for inputTokens |
$current |
\HTMLPurifier_Token | Current token variable. Do NOT use $token, as that variable is also a reference |
forwardUntilEndToken
Similar to _forward, but accepts a third parameter $nesting (which should be initialized at 0) and stops when we hit the end tag for the node $this->inputIndex starts in.
Parameters:
Parameter | Type | Description |
---|---|---|
$i |
int | Current integer index variable for inputTokens |
$current |
\HTMLPurifier_Token | Current token variable. Do NOT use $token, as that variable is also a reference |
$nesting |
int |
backward
Iterator function, starts with the previous token and continues until you reach the beginning of input tokens.
Parameters:
Parameter | Type | Description |
---|---|---|
$i |
int | Current integer index variable for inputTokens |
$current |
\HTMLPurifier_Token | Current token variable. Do NOT use $token, as that variable is also a reference |
handleText
Handler that is called when a text token is processed
Parameters:
Parameter | Type | Description |
---|---|---|
$token |
mixed |
handleElement
Handler that is called when a start or empty token is processed
Parameters:
Parameter | Type | Description |
---|---|---|
$token |
mixed |
handleEnd
Handler that is called when an end token is processed
Parameters:
Parameter | Type | Description |
---|---|---|
$token |
mixed |
notifyEnd
Notifier that is called when an end token is processed
- Warning: this method is deprecated. This means that this method will likely be removed in a future version.
Parameters:
Parameter | Type | Description |
---|---|---|
$token |
\HTMLPurifier_Token | Current token variable. |
Automatically generated on 2025-03-18