Spaces:
No application file
No application file
File size: 1,079 Bytes
d2897cd |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 |
<?php
declare(strict_types=1);
namespace Mautic\CoreBundle\Twig\Extension;
use Mautic\CoreBundle\Twig\Helper\SlotsHelper;
use Twig\Extension\AbstractExtension;
use Twig\TwigFunction;
class SlotExtension extends AbstractExtension
{
public function __construct(
protected SlotsHelper $helper
) {
}
/**
* @see Twig_Extension::getFunctions()
*/
public function getFunctions()
{
return [
new TwigFunction('slot', [$this, 'getSlot'], ['is_safe' => ['html']]),
new TwigFunction('slotHasContent', [$this, 'slotHasContent'], ['is_safe' => ['html']]),
];
}
public function getName(): string
{
return 'slot';
}
public function getSlot(string $name, string $default = ''): string|bool
{
ob_start();
$this->helper->output($name, $default);
return ob_get_clean();
}
/**
* @param string|array<string, mixed> $name
*/
public function slotHasContent($name): bool
{
return $this->helper->hasContent($name);
}
}
|