class Twig_Loader_Chain

Loads templates from other loaders.

@package twig @author Fabien Potencier <fabien@symfony.com>

Hierarchy

Expanded class hierarchy of Twig_Loader_Chain

File

drupal/core/vendor/twig/twig/lib/Twig/Loader/Chain.php, line 18

View source
class Twig_Loader_Chain implements Twig_LoaderInterface {
  protected $loaders;

  /**
   * Constructor.
   *
   * @param Twig_LoaderInterface[] $loaders An array of loader instances
   */
  public function __construct(array $loaders = array()) {
    $this->loaders = array();
    foreach ($loaders as $loader) {
      $this
        ->addLoader($loader);
    }
  }

  /**
   * Adds a loader instance.
   *
   * @param Twig_LoaderInterface $loader A Loader instance
   */
  public function addLoader(Twig_LoaderInterface $loader) {
    $this->loaders[] = $loader;
  }

  /**
   * Gets the source code of a template, given its name.
   *
   * @param string $name The name of the template to load
   *
   * @return string The template source code
   */
  public function getSource($name) {
    foreach ($this->loaders as $loader) {
      try {
        return $loader
          ->getSource($name);
      } catch (Twig_Error_Loader $e) {
      }
    }
    throw new Twig_Error_Loader(sprintf('Template "%s" is not defined.', $name));
  }

  /**
   * Gets the cache key to use for the cache for a given template name.
   *
   * @param string $name The name of the template to load
   *
   * @return string The cache key
   */
  public function getCacheKey($name) {
    foreach ($this->loaders as $loader) {
      try {
        return $loader
          ->getCacheKey($name);
      } catch (Twig_Error_Loader $e) {
      }
    }
    throw new Twig_Error_Loader(sprintf('Template "%s" is not defined.', $name));
  }

  /**
   * Returns true if the template is still fresh.
   *
   * @param string    $name The template name
   * @param timestamp $time The last modification time of the cached template
   */
  public function isFresh($name, $time) {
    foreach ($this->loaders as $loader) {
      try {
        return $loader
          ->isFresh($name, $time);
      } catch (Twig_Error_Loader $e) {
      }
    }
    throw new Twig_Error_Loader(sprintf('Template "%s" is not defined.', $name));
  }

}

Members

Namesort descending Modifiers Type Description Overrides
Twig_Loader_Chain::$loaders protected property
Twig_Loader_Chain::addLoader public function Adds a loader instance.
Twig_Loader_Chain::getCacheKey public function Gets the cache key to use for the cache for a given template name. Overrides Twig_LoaderInterface::getCacheKey
Twig_Loader_Chain::getSource public function Gets the source code of a template, given its name. Overrides Twig_LoaderInterface::getSource
Twig_Loader_Chain::isFresh public function Returns true if the template is still fresh. Overrides Twig_LoaderInterface::isFresh
Twig_Loader_Chain::__construct public function Constructor.