%PDF- %PDF-
Direktori : /data/www_bck/varak.net_bck/ampache.varak.net/modules/EchoNest/ |
Current File : //data/www_bck/varak.net_bck/ampache.varak.net/modules/EchoNest/Autoloader.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; } } }