Skip to content

Instantly share code, notes, and snippets.

@lfbittencourt
Created July 12, 2013 20:25
Show Gist options
  • Save lfbittencourt/5987534 to your computer and use it in GitHub Desktop.
Save lfbittencourt/5987534 to your computer and use it in GitHub Desktop.
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);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment