home
/
zktecojo
/
public_html
/
htmlpurifier
/
extras
➕ New
📤 Upload
✎ Editing:
HTMLPurifierExtras.autoload.php
← Back
<?php /** * @file * Convenience file that registers autoload handler for HTML Purifier. * * @warning * This autoloader does not contain the compatibility code seen in * HTMLPurifier_Bootstrap; the user is expected to make any necessary * changes to use this library. */ if (function_exists('spl_autoload_register')) { spl_autoload_register(array('HTMLPurifierExtras', 'autoload')); if (function_exists('__autoload')) { // Be polite and ensure that userland autoload gets retained spl_autoload_register('__autoload'); } } elseif (!function_exists('__autoload')) { function __autoload($class) { return HTMLPurifierExtras::autoload($class); } } // vim: et sw=4 sts=4
💾 Save Changes
Cancel
📤 Upload File
×
Select File
Upload
Cancel
➕ Create New
×
Type
📄 File
📁 Folder
Name
Create
Cancel
✎ Rename Item
×
Current Name
New Name
Rename
Cancel
🔐 Change Permissions
×
Target File
Permission (e.g., 0755, 0644)
0755
0644
0777
Apply
Cancel