2008-01-27 05:31:06 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Meta-class for HTML Purifier's extra class hierarchies, similar to
|
|
|
|
* HTMLPurifier_Bootstrap.
|
|
|
|
*/
|
|
|
|
class HTMLPurifierExtras
|
|
|
|
{
|
|
|
|
|
|
|
|
public static function autoload($class) {
|
|
|
|
$path = HTMLPurifierExtras::getPath($class);
|
|
|
|
if (!$path) return false;
|
|
|
|
require $path;
|
2008-02-17 23:59:23 +00:00
|
|
|
return true;
|
2008-01-27 05:31:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public static function getPath($class) {
|
|
|
|
if (
|
2008-02-25 21:21:12 +00:00
|
|
|
strncmp('FSTools', $class, 7) !== 0 &&
|
|
|
|
strncmp('ConfigDoc', $class, 9) !== 0
|
2008-01-27 05:31:06 +00:00
|
|
|
) return false;
|
|
|
|
// Custom implementations can go here
|
|
|
|
// Standard implementation:
|
|
|
|
return str_replace('_', '/', $class) . '.php';
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|