Skip to content

Instantly share code, notes, and snippets.

@skrings
Created October 21, 2011 14:55
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save skrings/1304041 to your computer and use it in GitHub Desktop.
Save skrings/1304041 to your computer and use it in GitHub Desktop.
Workaround to make the Zend Redirector suitable for Unit tests
DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE
Version 2, December 2004
Copyright (C) 2011 skrings / s0enke
Everyone is permitted to copy and distribute verbatim or modified
copies of this license document, and changing it is allowed as long
as the name is changed.
DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE
TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
0. You just DO WHAT THE FUCK YOU WANT TO.
<?php
/**
* Workaround to make the Zend Redirector not to exit() the whole process and
* and also not executing the action (if redirect e. g. is done in preDispatch()).
*
* <code>
* <?php
* $this->_helper->Redirect->setGotoUrl($url);
* ?>
* </code>
* @category ZendX
* @package ZendX_Controller
* @subpackage ZendX_Controller_Action_Helper
* @author skrings / s0enke
*/
class ZendX_Controller_Action_Helper_Redirect extends Zend_Controller_Action_Helper_Redirector
{
/**
* @var bool
*/
protected $isDispatched;
/**
* @return void
*/
public function preDispatch()
{
$this->isDispatched = $this->getRequest()->isDispatched();
}
/**
* Do NOT exit but also skip the action itself
*
* @return void
*/
public function redirectAndExit()
{
$this->getRequest()->setDispatched(false);
}
/**
* @return void
*/
public function postDispatch()
{
$this->getRequest()->setDispatched($this->isDispatched);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment