Neos\Fusion\View\FusionView::renderTypoScript PHP Метод

renderTypoScript() защищенный Метод

Render the given TypoScript and return the rendered page
protected renderTypoScript ( ) : string
Результат string
    protected function renderTypoScript()
    {
        $this->typoScriptRuntime->pushContextArray($this->variables);
        try {
            $output = $this->typoScriptRuntime->render($this->getTypoScriptPathForCurrentRequest());
        } catch (RuntimeException $exception) {
            throw $exception->getPrevious();
        }
        $this->typoScriptRuntime->popContext();
        return $output;
    }