vendor/sylius/sylius/src/Sylius/Bundle/UiBundle/Renderer/HtmlDebugTemplateBlockRenderer.php line 24

  1. <?php
  2. /*
  3.  * This file is part of the Sylius package.
  4.  *
  5.  * (c) Paweł Jędrzejewski
  6.  *
  7.  * For the full copyright and license information, please view the LICENSE
  8.  * file that was distributed with this source code.
  9.  */
  10. declare(strict_types=1);
  11. namespace Sylius\Bundle\UiBundle\Renderer;
  12. use Sylius\Bundle\UiBundle\Registry\TemplateBlock;
  13. final class HtmlDebugTemplateBlockRenderer implements TemplateBlockRendererInterface
  14. {
  15.     public function __construct(private TemplateBlockRendererInterface $templateBlockRenderer)
  16.     {
  17.     }
  18.     public function render(TemplateBlock $templateBlock, array $context = []): string
  19.     {
  20.         $shouldRenderHtmlDebug strrpos($templateBlock->getTemplate(), '.html.twig') !== false;
  21.         $renderedParts = [];
  22.         if ($shouldRenderHtmlDebug) {
  23.             $renderedParts[] = sprintf(
  24.                 '<!-- BEGIN BLOCK | event name: "%s", block name: "%s", template: "%s", priority: %d -->',
  25.                 $templateBlock->getEventName(),
  26.                 $templateBlock->getName(),
  27.                 $templateBlock->getTemplate(),
  28.                 $templateBlock->getPriority(),
  29.             );
  30.         }
  31.         $renderedParts[] = $this->templateBlockRenderer->render($templateBlock$context);
  32.         if ($shouldRenderHtmlDebug) {
  33.             $renderedParts[] = sprintf(
  34.                 '<!-- END BLOCK | event name: "%s", block name: "%s" -->',
  35.                 $templateBlock->getEventName(),
  36.                 $templateBlock->getName(),
  37.             );
  38.         }
  39.         return implode("\n"$renderedParts);
  40.     }
  41. }