You are here

public function RenderBlock::getFunctions in Twig Blocks 8

File

src/Twig/RenderBlock.php, line 25
Contains \Drupal\twig_blocks\Twig\RenderBlock.

Class

RenderBlock
Adds extension to render a block.

Namespace

Drupal\twig_blocks\Twig

Code

public function getFunctions() {
  return [
    new \Twig_SimpleFunction('render_block', [
      $this,
      'render_block',
    ], [
      'is_safe' => [
        'html',
      ],
    ]),
  ];
}