leftypol/inc/lib/Twig/Autoloader.php

49 lines
1.1 KiB
PHP
Raw Normal View History

2011-10-05 04:22:53 +00:00
<?php
/*
* This file is part of Twig.
*
* (c) 2009 Fabien Potencier
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
/**
* Autoloads Twig classes.
*
2013-08-01 19:20:12 +00:00
* @author Fabien Potencier <fabien@symfony.com>
2011-10-05 04:22:53 +00:00
*/
class Twig_Autoloader
{
/**
* Registers Twig_Autoloader as an SPL autoloader.
2013-08-01 19:20:12 +00:00
*
* @param Boolean $prepend Whether to prepend the autoloader or not.
2011-10-05 04:22:53 +00:00
*/
2013-08-01 19:20:12 +00:00
public static function register($prepend = false)
2011-10-05 04:22:53 +00:00
{
2013-08-01 19:20:12 +00:00
if (version_compare(phpversion(), '5.3.0', '>=')) {
spl_autoload_register(array(new self, 'autoload'), true, $prepend);
} else {
spl_autoload_register(array(new self, 'autoload'));
}
2011-10-05 04:22:53 +00:00
}
/**
* Handles autoloading of classes.
*
2013-08-01 19:20:12 +00:00
* @param string $class A class name.
2011-10-05 04:22:53 +00:00
*/
2013-08-01 19:20:12 +00:00
public static function autoload($class)
2011-10-05 04:22:53 +00:00
{
if (0 !== strpos($class, 'Twig')) {
return;
}
if (is_file($file = dirname(__FILE__).'/../'.str_replace(array('_', "\0"), array('/', ''), $class).'.php')) {
require $file;
}
}
}