HTMLPurifier 4.4.0
/home/ezyang/Dev/htmlpurifier/library/HTMLPurifier/Filter.php
Go to the documentation of this file.
00001 <?php
00002 
00022 class HTMLPurifier_Filter
00023 {
00024 
00028     public $name;
00029 
00033     public function preFilter($html, $config, $context) {
00034         return $html;
00035     }
00036 
00040     public function postFilter($html, $config, $context) {
00041         return $html;
00042     }
00043 
00044 }
00045 
00046 // vim: et sw=4 sts=4