vendor/sylius/sylius/src/Sylius/Bundle/UiBundle/Twig/TemplateEventExtension.php line 36

  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\Twig;
  12. use Sylius\Bundle\UiBundle\Renderer\TemplateEventRendererInterface;
  13. use Twig\Extension\AbstractExtension;
  14. use Twig\TwigFunction;
  15. final class TemplateEventExtension extends AbstractExtension
  16. {
  17.     public function __construct(private TemplateEventRendererInterface $templateEventRenderer)
  18.     {
  19.     }
  20.     public function getFunctions(): array
  21.     {
  22.         return [
  23.             new TwigFunction('sylius_template_event', [$this'render'], ['is_safe' => ['html']]),
  24.         ];
  25.     }
  26.     /**
  27.      * @param string|string[] $eventName
  28.      */
  29.     public function render(string|array $eventName, array $context = []): string
  30.     {
  31.         return $this->templateEventRenderer->render((array) $eventName$context);
  32.     }
  33. }