Class HTMLPurifier_Filter

Description

Represents a pre or post processing filter on HTML Purifier's output Sometimes, a little ad-hoc fixing of HTML has to be done before it gets sent through HTML Purifier: you can use filters to acheive this effect. this manner. PHP's support for them is not terribly robust, so we're going to just loop through the filters.

Represents a pre or post processing filter on HTML Purifier's output Sometimes, a little ad-hoc fixing of HTML has to be done before it gets sent through HTML Purifier: you can use filters to acheive this effect. For instance, YouTube videos can be preserved using this manner. You could have used a decorator for this task, but PHP's support for them is not terribly robust, so we're going to just loop through the filters. Filters should be exited first in, last out. If there are three filters, named 1, 2 and 3, the order of execution should go 1->preFilter, 2->preFilter, 3->preFilter, purify, 3->postFilter, 2->postFilter, 1->postFilter.

Located in /library/HTMLPurifier/Filter.php (line 22)


	
			
Direct descendents
Class Description
HTMLPurifier_Filter_ExtractStyleBlocks This filter extracts <style> blocks from input HTML, cleans them up using CSSTidy, and then places them in $purifier->context->get('StyleBlocks') so they can be used elsewhere in the document.
HTMLPurifier_Filter_YouTube Represents a pre or post processing filter on HTML Purifier's output Sometimes, a little ad-hoc fixing of HTML has to be done before it gets sent through HTML Purifier: you can use filters to acheive this effect. this manner. PHP's support for them is not terribly robust, so we're going to just loop through the filters.
Variable Summary
mixed $name
Method Summary
void postFilter ( $html,  $config,  $context)
void preFilter ( $html,  $config,  $context)
Variables
mixed $name (line 28)

Name of the filter for identification purposes

Name of the filter for identification purposes

  • access: public

Redefined in descendants as:
Methods
postFilter (line 40)

Post-processor function, handles HTML after HTML Purifier

Post-processor function, handles HTML after HTML Purifier

  • access: public
void postFilter ( $html,  $config,  $context)
  • $html
  • $config
  • $context

Redefined in descendants as:
preFilter (line 33)

Pre-processor function, handles HTML before HTML Purifier

Pre-processor function, handles HTML before HTML Purifier

  • access: public
void preFilter ( $html,  $config,  $context)
  • $html
  • $config
  • $context

Redefined in descendants as:

Documentation generated on Thu, 19 Jun 2008 18:49:11 -0400 by phpDocumentor 1.4.2