class Twig_Autoloader in Zircon Profile 8.0
Same name and namespace in other branches
- 8 vendor/twig/twig/lib/Twig/Autoloader.php \Twig_Autoloader
Autoloads Twig classes.
@author Fabien Potencier <fabien@symfony.com>
Hierarchy
- class \Twig_Autoloader
Expanded class hierarchy of Twig_Autoloader
Deprecated
Use Composer instead. Will be removed in Twig 2.0.
File
- vendor/
twig/ twig/ lib/ Twig/ Autoloader.php, line 21
View source
class Twig_Autoloader {
/**
* Registers Twig_Autoloader as an SPL autoloader.
*
* @param bool $prepend Whether to prepend the autoloader or not.
*/
public static function register($prepend = false) {
@trigger_error('Using Twig_Autoloader is deprecated. Use Composer instead.', E_USER_DEPRECATED);
if (PHP_VERSION_ID < 50300) {
spl_autoload_register(array(
__CLASS__,
'autoload',
));
}
else {
spl_autoload_register(array(
__CLASS__,
'autoload',
), true, $prepend);
}
}
/**
* Handles autoloading of classes.
*
* @param string $class A class name.
*/
public static function autoload($class) {
if (0 !== strpos($class, 'Twig')) {
return;
}
if (is_file($file = dirname(__FILE__) . '/../' . str_replace(array(
'_',
"\0",
), array(
'/',
'',
), $class) . '.php')) {
require $file;
}
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
Twig_Autoloader:: |
public static | function | Handles autoloading of classes. | |
Twig_Autoloader:: |
public static | function | Registers Twig_Autoloader as an SPL autoloader. |