mirror of
https://github.com/Yetangitu/ampache
synced 2025-10-04 10:19:25 +02:00
37 lines
868 B
PHP
37 lines
868 B
PHP
<?php
|
|
|
|
/**
|
|
* Autoloads EchoNest classes
|
|
*
|
|
* @author Brent Shaffer <bshafs at gmail dot com>
|
|
* @license MIT License
|
|
*/
|
|
class EchoNest_Autoloader
|
|
{
|
|
/**
|
|
* Registers EchoNest_Autoloader as an SPL autoloader.
|
|
*/
|
|
static public function register()
|
|
{
|
|
ini_set('unserialize_callback_func', 'spl_autoload_call');
|
|
spl_autoload_register(array(new self, 'autoload'));
|
|
}
|
|
|
|
/**
|
|
* Handles autoloading of classes.
|
|
*
|
|
* @param string $class A class name.
|
|
*
|
|
* @return boolean Returns true if the class has been loaded
|
|
*/
|
|
static public function autoload($class)
|
|
{
|
|
if (0 !== strpos($class, 'EchoNest')) {
|
|
return;
|
|
}
|
|
|
|
if (file_exists($file = dirname(__FILE__).'/../'.str_replace('_', '/', $class).'.php')) {
|
|
require $file;
|
|
}
|
|
}
|
|
}
|