vendor/symfony/framework-bundle/Templating/TemplateFilenameParser.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;
  11. @trigger_error('The '.TemplateFilenameParser::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\Templating\TemplateNameParserInterface;
  13. use Symfony\Component\Templating\TemplateReferenceInterface;
  14. /**
  15.  * TemplateFilenameParser converts template filenames to
  16.  * TemplateReferenceInterface instances.
  17.  *
  18.  * @author Fabien Potencier <fabien@symfony.com>
  19.  *
  20.  * @deprecated since version 4.3, to be removed in 5.0; use Twig instead.
  21.  */
  22. class TemplateFilenameParser implements TemplateNameParserInterface
  23. {
  24.     /**
  25.      * {@inheritdoc}
  26.      */
  27.     public function parse($name)
  28.     {
  29.         if ($name instanceof TemplateReferenceInterface) {
  30.             return $name;
  31.         }
  32.         $parts explode('/'str_replace('\\''/'$name));
  33.         $elements explode('.'array_pop($parts));
  34.         if (> \count($elements)) {
  35.             return false;
  36.         }
  37.         $engine array_pop($elements);
  38.         $format array_pop($elements);
  39.         return new TemplateReference(''implode('/'$parts), implode('.'$elements), $format$engine);
  40.     }
  41. }