PHP Classes

File: system/dependencies/ezyang/htmlpurifier/library/HTMLPurifier.autoload-legacy.php

Recommend this page to a friend!
  Classes of Dimitri Sitchet   dFramework   system/dependencies/ezyang/htmlpurifier/library/HTMLPurifier.autoload-legacy.php   Download  
File: system/dependencies/ezyang/htmlpurifier/library/HTMLPurifier.autoload-legacy.php
Role: Auxiliary script
Content type: text/plain
Description: Auxiliary script
Class: dFramework
Framework to build PHP applications
Author: By
Last change:
Date: 2 years ago
Size: 261 bytes
 

Contents

Class file image Download
<?php

/**
 * @file
 * Legacy autoloader for systems lacking spl_autoload_register
 *
 * Must be separate to prevent deprecation warning on PHP 7.2
 */

function __autoload($class)
{
    return
HTMLPurifier_Bootstrap::autoload($class);
}

// vim: et sw=4 sts=4