1
0
mirror of https://github.com/vichan-devel/vichan.git synced 2024-12-11 15:26:08 +01:00
vichan/inc/lib/Twig/Autoloader.php

49 lines
1.1 KiB
PHP
Raw Normal View History

2011-10-05 06:22:53 +02: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 21:20:12 +02:00
* @author Fabien Potencier <fabien@symfony.com>
2011-10-05 06:22:53 +02:00
*/
class Twig_Autoloader
{
/**
* Registers Twig_Autoloader as an SPL autoloader.
2013-08-01 21:20:12 +02:00
*
2015-03-11 00:16:45 +01:00
* @param bool $prepend Whether to prepend the autoloader or not.
2011-10-05 06:22:53 +02:00
*/
2013-08-01 21:20:12 +02:00
public static function register($prepend = false)
2011-10-05 06:22:53 +02:00
{
2015-03-11 00:16:45 +01:00
if (PHP_VERSION_ID < 50300) {
spl_autoload_register(array(__CLASS__, 'autoload'));
2013-08-01 21:20:12 +02:00
} else {
2015-03-11 00:16:45 +01:00
spl_autoload_register(array(__CLASS__, 'autoload'), true, $prepend);
2013-08-01 21:20:12 +02:00
}
2011-10-05 06:22:53 +02:00
}
/**
* Handles autoloading of classes.
*
2013-08-01 21:20:12 +02:00
* @param string $class A class name.
2011-10-05 06:22:53 +02:00
*/
2013-08-01 21:20:12 +02:00
public static function autoload($class)
2011-10-05 06:22:53 +02:00
{
if (0 !== strpos($class, 'Twig')) {
return;
}
if (is_file($file = dirname(__FILE__).'/../'.str_replace(array('_', "\0"), array('/', ''), $class).'.php')) {
require $file;
}
}
}