Aimeos\ShopBundle\Controller\JqadmController::getHtml PHP Method

getHtml() protected method

Returns the generated HTML code
protected getHtml ( string $content ) : Response
$content string Content from admin client
return Symfony\Component\HttpFoundation\Response View for rendering the output
    protected function getHtml($content)
    {
        $version = $this->get('aimeos')->getVersion();
        $content = str_replace(array('{type}', '{version}'), array('Symfony', $version), $content);
        return $this->render('AimeosShopBundle:Jqadm:index.html.twig', array('content' => $content));
    }