HTMLPurifier 4.4.0
/home/ezyang/Dev/htmlpurifier/library/HTMLPurifier/URIFilter.php
Go to the documentation of this file.
00001 <?php
00002 
00028 abstract class HTMLPurifier_URIFilter
00029 {
00030 
00034     public $name;
00035 
00039     public $post = false;
00040 
00046     public $always_load = false;
00047 
00052     public function prepare($config) {return true;}
00053 
00063     abstract public function filter(&$uri, $config, $context);
00064 
00065 }
00066 
00067 // vim: et sw=4 sts=4