Skip to content

Instantly share code, notes, and snippets.

@lfbittencourt
lfbittencourt / SomeController.php
Created July 12, 2013 20:25
Snippet to disable layouts and/or views in a Zend Framework application.
<?php
// Disable layouts.
$this->_helper->layout->disableLayout();
// Disable view.
$this->_helper->viewRenderer->setNoRender(true);