vendor/symfony/framework-bundle/Templating/Loader/FilesystemLoader.php line 14

Open in your IDE?
  1. <?php
  2. /*
  3.  * This file is part of the Symfony package.
  4.  *
  5.  * (c) Fabien Potencier <fabien@symfony.com>
  6.  *
  7.  * For the full copyright and license information, please view the LICENSE
  8.  * file that was distributed with this source code.
  9.  */
  10. namespace Symfony\Bundle\FrameworkBundle\Templating\Loader;
  11. @trigger_error('The '.FilesystemLoader::class.' class is deprecated since version 4.3 and will be removed in 5.0; use Twig instead.', \E_USER_DEPRECATED);
  12. use Symfony\Component\Config\FileLocatorInterface;
  13. use Symfony\Component\Templating\Loader\LoaderInterface;
  14. use Symfony\Component\Templating\Storage\FileStorage;
  15. use Symfony\Component\Templating\TemplateReferenceInterface;
  16. /**
  17.  * FilesystemLoader is a loader that read templates from the filesystem.
  18.  *
  19.  * @author Fabien Potencier <fabien@symfony.com>
  20.  *
  21.  * @deprecated since version 4.3, to be removed in 5.0; use Twig instead.
  22.  */
  23. class FilesystemLoader implements LoaderInterface
  24. {
  25.     protected $locator;
  26.     public function __construct(FileLocatorInterface $locator)
  27.     {
  28.         $this->locator $locator;
  29.     }
  30.     /**
  31.      * {@inheritdoc}
  32.      */
  33.     public function load(TemplateReferenceInterface $template)
  34.     {
  35.         try {
  36.             $file $this->locator->locate($template);
  37.         } catch (\InvalidArgumentException $e) {
  38.             return false;
  39.         }
  40.         return new FileStorage($file);
  41.     }
  42.     /**
  43.      * {@inheritdoc}
  44.      */
  45.     public function isFresh(TemplateReferenceInterface $template$time)
  46.     {
  47.         if (false === $storage $this->load($template)) {
  48.             return false;
  49.         }
  50.         if (!is_readable((string) $storage)) {
  51.             return false;
  52.         }
  53.         return filemtime((string) $storage) < $time;
  54.     }
  55. }