12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394 |
- <?php
- /*
- * This file is part of the Symfony package.
- *
- * (c) Fabien Potencier <fabien@symfony.com>
- *
- * For the full copyright and license information, please view the LICENSE
- * file that was distributed with this source code.
- */
- namespace Symfony\Bundle\WebProfilerBundle\Profiler;
- use Symfony\Component\HttpKernel\Exception\NotFoundHttpException;
- use Symfony\Component\HttpKernel\Profiler\Profile;
- use Symfony\Component\HttpKernel\Profiler\Profiler;
- use Twig\Environment;
- /**
- * Profiler Templates Manager.
- *
- * @author Fabien Potencier <fabien@symfony.com>
- * @author Artur Wielogórski <wodor@wodor.net>
- *
- * @internal
- */
- class TemplateManager
- {
- protected $twig;
- protected $templates;
- protected $profiler;
- public function __construct(Profiler $profiler, Environment $twig, array $templates)
- {
- $this->profiler = $profiler;
- $this->twig = $twig;
- $this->templates = $templates;
- }
- /**
- * Gets the template name for a given panel.
- *
- * @return mixed
- *
- * @throws NotFoundHttpException
- */
- public function getName(Profile $profile, string $panel)
- {
- $templates = $this->getNames($profile);
- if (!isset($templates[$panel])) {
- throw new NotFoundHttpException(sprintf('Panel "%s" is not registered in profiler or is not present in viewed profile.', $panel));
- }
- return $templates[$panel];
- }
- /**
- * Gets template names of templates that are present in the viewed profile.
- *
- * @return array
- *
- * @throws \UnexpectedValueException
- */
- public function getNames(Profile $profile)
- {
- $loader = $this->twig->getLoader();
- $templates = [];
- foreach ($this->templates as $arguments) {
- if (null === $arguments) {
- continue;
- }
- [$name, $template] = $arguments;
- if (!$this->profiler->has($name) || !$profile->hasCollector($name)) {
- continue;
- }
- if ('.html.twig' === substr($template, -10)) {
- $template = substr($template, 0, -10);
- }
- if (!$loader->exists($template.'.html.twig')) {
- throw new \UnexpectedValueException(sprintf('The profiler template "%s.html.twig" for data collector "%s" does not exist.', $template, $name));
- }
- $templates[$name] = $template.'.html.twig';
- }
- return $templates;
- }
- }
|