00001 <?php 00002 00014 abstract class HTMLPurifier_URIFilter 00015 { 00016 00020 public $name; 00021 00025 public $post = false; 00026 00030 public function prepare($config) {return true;} 00031 00041 abstract public function filter(&$uri, $config, $context); 00042 00043 } 00044 00045 // vim: et sw=4 sts=4