* * @deprecated since version 1.5, use Composer instead. */ class Twig_Extensions_Autoloader { /** * Registers Twig_Extensions_Autoloader as an SPL autoloader. */ public static function register() { spl_autoload_register(array(new self(), 'autoload')); } /** * Handles autoloading of classes. * * @param string $class a class name * * @return bool Returns true if the class has been loaded */ public static function autoload($class) { if (0 !== strpos($class, 'Twig_Extensions')) { return; } if (file_exists($file = __DIR__.'/../../'.str_replace('_', '/', $class).'.php')) { require $file; } } }