You are here

class Twig_Autoloader in Translation template extractor 6.3

Same name and namespace in other branches
  1. 7.3 vendor/Twig/Autoloader.php \Twig_Autoloader

Autoloads Twig classes.

@author Fabien Potencier <fabien@symfony.com>

Hierarchy

Expanded class hierarchy of Twig_Autoloader

File

vendor/Twig/Autoloader.php, line 17

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) {
    if (version_compare(phpversion(), '5.3.0', '>=')) {
      spl_autoload_register(array(
        __CLASS__,
        'autoload',
      ), true, $prepend);
    }
    else {
      spl_autoload_register(array(
        __CLASS__,
        'autoload',
      ));
    }
  }

  /**
   * 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

Namesort descending Modifiers Type Description Overrides
Twig_Autoloader::autoload public static function Handles autoloading of classes.
Twig_Autoloader::register public static function Registers Twig_Autoloader as an SPL autoloader.