HTMLPurifier_Filter Klassenreferenz

Klassendiagramm für HTMLPurifier_Filter:

Inheritance graph
[Legende]

Öffentliche Methoden

 preFilter ($html, $config, $context)
 postFilter ($html, $config, $context)

Datenfelder

 $name

Ausführliche Beschreibung

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.

Zu beachten:
Methods are not declared abstract as it is perfectly legitimate for an implementation not to want anything to happen on a step

Definiert in Zeile 22 der Datei Filter.php.


Dokumentation der Elementfunktionen

postFilter ( html,
config,
context 
)

Post-processor function, handles HTML after HTML Purifier

Erneute Implementation in HTMLPurifier_Filter_YouTube.

Definiert in Zeile 40 der Datei Filter.php.

preFilter ( html,
config,
context 
)

Pre-processor function, handles HTML before HTML Purifier

Erneute Implementation in HTMLPurifier_Filter_ExtractStyleBlocks und HTMLPurifier_Filter_YouTube.

Definiert in Zeile 33 der Datei Filter.php.


Dokumentation der Datenelemente

$name

Name of the filter for identification purposes

Erneute Implementation in HTMLPurifier_Filter_ExtractStyleBlocks und HTMLPurifier_Filter_YouTube.

Definiert in Zeile 28 der Datei Filter.php.


Die Dokumentation für diese Klasse wurde erzeugt aufgrund der Datei:
Copyright © 2003 - 2009 MyOOS [Shopsystem]. All rights reserved.
MyOOS [Shopsystem] is Free Software released under the GNU/GPL License.

Webmaster: info@r23.de (Impressum)
doxygen