5 * Convenience file that registers autoload handler for HTML Purifier.
8 * This autoloader does not contain the compatibility code seen in
9 * HTMLPurifier_Bootstrap; the user is expected to make any necessary
10 * changes to use this library.
13 if (function_exists('spl_autoload_register')) {
14 spl_autoload_register(array('HTMLPurifierExtras', 'autoload'));
15 if (function_exists('__autoload')) {
16 // Be polite and ensure that userland autoload gets retained
17 spl_autoload_register('__autoload');
19 } elseif (!function_exists('__autoload')) {
20 function __autoload($class) {
21 return HTMLPurifierExtras
::autoload($class);