You are here

public function RenderView::getFunctions in Twig Views 8

File

src/Twig/RenderView.php, line 24

Class

RenderView
Adds extension to render a view.

Namespace

Drupal\twig_views\Twig

Code

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