Controller könnte so aussehen:
<?php
class myController extends ControllerBase
{
public function myFunc1()
{
$html = " ... ";
return [
'#type' => 'inline_template',
'#template' => '{{ html|raw }}',
'#context' => ['html' => $html]
];
}
}
Neuen Kommentar schreiben