![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/mautic.corals.io/app/bundles/CoreBundle/Twig/Extension/ |
<?php declare(strict_types=1); namespace Mautic\CoreBundle\Twig\Extension; use Mautic\CoreBundle\Twig\Helper\FormatterHelper; use Twig\Extension\AbstractExtension; use Twig\TwigFilter; use Twig\TwigFunction; class FormatterExtension extends AbstractExtension { public function __construct( protected FormatterHelper $formatterHelper ) { } public function getFilters() { return [ new TwigFilter('formatter_simple_array_to_html', [$this, 'simpleArrayToHtml'], ['is_safe' => ['html']]), ]; } public function getFunctions() { return [ new TwigFunction('format', [$this, '_'], ['is_safe' => ['all']]), new TwigFunction('normalizeStringValue', [$this, 'normalizeStringValue']), new TwigFunction('formatter_simple_array_to_html', [$this, 'simpleArrayToHtml'], ['is_safe' => ['html']]), ]; } /** * Format a string. * * @param mixed $val */ public function _($val, string $type = 'html', bool $textOnly = false, int $round = 1): string { return (string) $this->formatterHelper->_($val, $type, $textOnly, $round); } /** * @see FormatterHelper::normalizeStringValue */ public function normalizeStringValue(string $string): string { return $this->formatterHelper->normalizeStringValue($string); } /** * @param array<mixed> $array */ public function simpleArrayToHtml(array $array, string $delimeter = '<br />'): string { return $this->formatterHelper->simpleArrayToHtml($array, $delimeter); } }