* * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Symfony\Component\Templating\Loader; use Symfony\Component\Templating\Storage\FileStorage; use Symfony\Component\Templating\Storage\Storage; use Symfony\Component\Templating\TemplateReferenceInterface; trigger_deprecation('symfony/templating', '6.4', '"%s" is deprecated since version 6.4 and will be removed in 7.0. Use Twig instead.', FilesystemLoader::class); /** * FilesystemLoader is a loader that read templates from the filesystem. * * @author Fabien Potencier * * @deprecated since Symfony 6.4, use Twig instead */ class FilesystemLoader extends Loader { protected $templatePathPatterns; /** * @param string|string[] $templatePathPatterns An array of path patterns to look for templates */ public function __construct(string|array $templatePathPatterns) { $this->templatePathPatterns = (array) $templatePathPatterns; } public function load(TemplateReferenceInterface $template): Storage|false { $file = $template->get('name'); if (self::isAbsolutePath($file) && is_file($file)) { return new FileStorage($file); } $replacements = []; foreach ($template->all() as $key => $value) { $replacements['%'.$key.'%'] = $value; } $fileFailures = []; foreach ($this->templatePathPatterns as $templatePathPattern) { if (is_file($file = strtr($templatePathPattern, $replacements)) && is_readable($file)) { $this->logger?->debug('Loaded template file.', ['file' => $file]); return new FileStorage($file); } if (null !== $this->logger) { $fileFailures[] = $file; } } // only log failures if no template could be loaded at all foreach ($fileFailures as $file) { $this->logger?->debug('Failed loading template file.', ['file' => $file]); } return false; } public function isFresh(TemplateReferenceInterface $template, int $time): bool { if (false === $storage = $this->load($template)) { return false; } return filemtime((string) $storage) < $time; } /** * Returns true if the file is an existing absolute path. */ protected static function isAbsolutePath(string $file): bool { if ('/' == $file[0] || '\\' == $file[0] || (\strlen($file) > 3 && ctype_alpha($file[0]) && ':' == $file[1] && ('\\' == $file[2] || '/' == $file[2]) ) || parse_url($file, \PHP_URL_SCHEME) ) { return true; } return false; } }