public function Twig_Loader_Array::isFresh

Returns true if the template is still fresh.

Parameters

string $name The template name:

timestamp $time The last modification time of the cached template:

Return value

Boolean true if the template is fresh, false otherwise

Throws

Twig_Error_Loader When $name is not found

Overrides Twig_LoaderInterface::isFresh

File

drupal/core/vendor/twig/twig/lib/Twig/Loader/Array.php, line 89

Class

Twig_Loader_Array
Loads a template from an array.

Code

public function isFresh($name, $time) {
  $name = (string) $name;
  if (!isset($this->templates[$name])) {
    throw new Twig_Error_Loader(sprintf('Template "%s" is not defined.', $name));
  }
  return true;
}