|
ILIAS
release_5-0 Revision 5.0.0-1144-gc4397b1f870
|
Chainable filters for custom URI processing. More...
Inheritance diagram for HTMLPurifier_URIFilter:
Collaboration diagram for HTMLPurifier_URIFilter:Public Member Functions | |
| prepare ($config) | |
| Performs initialization for the filter. More... | |
| filter (&$uri, $config, $context) | |
| Filter a URI object. More... | |
Data Fields | |
| $name | |
| Unique identifier of filter. More... | |
| $post = false | |
| True if this filter should be run after scheme validation. More... | |
| $always_load = false | |
| True if this filter should always be loaded. More... | |
Chainable filters for custom URI processing.
These filters can perform custom actions on a URI filter object, including transformation or blacklisting. A filter named Foo must have a corresponding configuration directive URI.Foo, unless always_load is specified to be true.
The following contexts may be available while URIFilters are being processed:
- EmbeddedURI: true if URI is an embedded resource that will be loaded automatically on page load - CurrentToken: a reference to the token that is currently being processed - CurrentAttr: the name of the attribute that is currently being processed - CurrentCSSProperty: the name of the CSS property that is currently being processed (if applicable)
Definition at line 28 of file URIFilter.php.
|
abstract |
Filter a URI object.
| HTMLPurifier_URI | $uri | Reference to URI object variable |
| HTMLPurifier_Config | $config | |
| HTMLPurifier_Context | $context |
Reimplemented in HTMLPurifier_URIFilter_DisableExternal, HTMLPurifier_URIFilter_DisableExternalResources, HTMLPurifier_URIFilter_DisableResources, HTMLPurifier_URIFilter_HostBlacklist, HTMLPurifier_URIFilter_MakeAbsolute, HTMLPurifier_URIFilter_Munge, and HTMLPurifier_URIFilter_SafeIframe.
| HTMLPurifier_URIFilter::prepare | ( | $config | ) |
Performs initialization for the filter.
If the filter returns false, this means that it shouldn't be considered active.
| HTMLPurifier_Config | $config |
Reimplemented in HTMLPurifier_URIFilter_DisableExternal, HTMLPurifier_URIFilter_HostBlacklist, HTMLPurifier_URIFilter_MakeAbsolute, HTMLPurifier_URIFilter_Munge, and HTMLPurifier_URIFilter_SafeIframe.
Definition at line 57 of file URIFilter.php.
| HTMLPurifier_URIFilter::$always_load = false |
True if this filter should always be loaded.
This permits a filter to be named Foo without the corresponding URI.Foo directive existing. @type bool
Definition at line 49 of file URIFilter.php.
| HTMLPurifier_URIFilter::$name |
| HTMLPurifier_URIFilter::$post = false |
True if this filter should be run after scheme validation.
@type bool
Definition at line 41 of file URIFilter.php.