XOOPS 2.5.6  Final
 All Classes Namespaces Files Functions Variables Pages
URIFilter.php
Go to the documentation of this file.
1 <?php
2 
28 abstract class HTMLPurifier_URIFilter
29 {
30 
34  public $name;
35 
39  public $post = false;
40 
46  public $always_load = false;
47 
52  public function prepare($config) {return true;}
53 
63  abstract public function filter(&$uri, $config, $context);
64 
65 }
66 
67 // vim: et sw=4 sts=4