howto - zend framework 2 disable layout (zf2)
public function myAction()
{
$response = $this->getResponse();
$response->setContent($myContent);
return $response
}
Thats it, no layout, just you content.
public function myAction()
{
$response = $this->getResponse();
$response->setContent($myContent);
return $response
}
Comments
Display comments as Linear | Threaded