vendor/symfony/framework-bundle/CacheWarmer/TemplateFinder.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\CacheWarmer;
  11. @trigger_error('The '.TemplateFinder::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\Finder\Finder;
  13. use Symfony\Component\HttpKernel\Bundle\BundleInterface;
  14. use Symfony\Component\HttpKernel\KernelInterface;
  15. use Symfony\Component\Templating\TemplateNameParserInterface;
  16. use Symfony\Component\Templating\TemplateReferenceInterface;
  17. /**
  18.  * Finds all the templates.
  19.  *
  20.  * @author Victor Berchet <victor@suumit.com>
  21.  *
  22.  * @deprecated since version 4.3, to be removed in 5.0; use Twig instead.
  23.  */
  24. class TemplateFinder implements TemplateFinderInterface
  25. {
  26.     private $kernel;
  27.     private $parser;
  28.     private $rootDir;
  29.     private $templates;
  30.     /**
  31.      * @param KernelInterface             $kernel  A KernelInterface instance
  32.      * @param TemplateNameParserInterface $parser  A TemplateNameParserInterface instance
  33.      * @param string                      $rootDir The directory where global templates can be stored
  34.      */
  35.     public function __construct(KernelInterface $kernelTemplateNameParserInterface $parserstring $rootDir)
  36.     {
  37.         $this->kernel $kernel;
  38.         $this->parser $parser;
  39.         $this->rootDir $rootDir;
  40.     }
  41.     /**
  42.      * Find all the templates in the bundle and in the kernel Resources folder.
  43.      *
  44.      * @return TemplateReferenceInterface[]
  45.      */
  46.     public function findAllTemplates()
  47.     {
  48.         if (null !== $this->templates) {
  49.             return $this->templates;
  50.         }
  51.         $templates = [];
  52.         foreach ($this->kernel->getBundles() as $bundle) {
  53.             $templates array_merge($templates$this->findTemplatesInBundle($bundle));
  54.         }
  55.         $templates array_merge($templates$this->findTemplatesInFolder($this->rootDir.'/views'));
  56.         return $this->templates $templates;
  57.     }
  58.     /**
  59.      * Find templates in the given directory.
  60.      *
  61.      * @param string $dir The folder where to look for templates
  62.      *
  63.      * @return TemplateReferenceInterface[]
  64.      */
  65.     private function findTemplatesInFolder($dir)
  66.     {
  67.         $templates = [];
  68.         if (is_dir($dir)) {
  69.             $finder = new Finder();
  70.             foreach ($finder->files()->followLinks()->in($dir) as $file) {
  71.                 $template $this->parser->parse($file->getRelativePathname());
  72.                 if (false !== $template) {
  73.                     $templates[] = $template;
  74.                 }
  75.             }
  76.         }
  77.         return $templates;
  78.     }
  79.     /**
  80.      * Find templates in the given bundle.
  81.      *
  82.      * @param BundleInterface $bundle The bundle where to look for templates
  83.      *
  84.      * @return TemplateReferenceInterface[]
  85.      */
  86.     private function findTemplatesInBundle(BundleInterface $bundle)
  87.     {
  88.         $name $bundle->getName();
  89.         $templates array_unique(array_merge(
  90.             $this->findTemplatesInFolder($bundle->getPath().'/Resources/views'),
  91.             $this->findTemplatesInFolder($this->rootDir.'/'.$name.'/views')
  92.         ));
  93.         foreach ($templates as $i => $template) {
  94.             $templates[$i] = $template->set('bundle'$name);
  95.         }
  96.         return $templates;
  97.     }
  98. }