doRenderView example

throw $exception;
        }
    }

    /** * Returns a rendered view. * * Forms found in parameters are auto-cast to form views. */
    protected function renderView(string $view, array $parameters = []): string
    {
        return $this->doRenderView($view, null, $parameters, __FUNCTION__);
    }

    /** * Returns a rendered block from a view. * * Forms found in parameters are auto-cast to form views. */
    protected function renderBlockView(string $view, string $block, array $parameters = []): string
    {
        return $this->doRenderView($view$block$parameters, __FUNCTION__);
    }

    
Home | Imprint | This part of the site doesn't use cookies.