Aimeos\ShopBundle\Service\View::addResponse PHP 메소드

addResponse() 보호된 메소드

Adds the "response" helper to the view object
protected addResponse ( Aimeos\MW\View\Iface $view ) : Aimeos\MW\View\Iface
$view Aimeos\MW\View\Iface View object
리턴 Aimeos\MW\View\Iface Modified view object
    protected function addResponse(\Aimeos\MW\View\Iface $view)
    {
        $helper = new \Aimeos\MW\View\Helper\Response\Symfony2($view);
        $view->addHelper('response', $helper);
        return $view;
    }