Move all banners to GitHub. Adds library phpspreadsheet to JCB. Add import item example to demo component. Updates the Superpower class with the GetRemote class in the plugin. Ensures the super power autoloader triggers the correct repositories.
15 lines
213 B
PHP
15 lines
213 B
PHP
<?php
|
|
|
|
/**
|
|
* @file
|
|
* Legacy autoloader for systems lacking spl_autoload_register
|
|
*
|
|
*/
|
|
|
|
spl_autoload_register(function($class)
|
|
{
|
|
return HTMLPurifier_Bootstrap::autoload($class);
|
|
});
|
|
|
|
// vim: et sw=4 sts=4
|