Skip to content

Instantly share code, notes, and snippets.

@robzienert
Created July 8, 2011 17:11
Show Gist options
  • Select an option

  • Save robzienert/1072289 to your computer and use it in GitHub Desktop.

Select an option

Save robzienert/1072289 to your computer and use it in GitHub Desktop.
<?php
class FooPlugin extends \Zend_Controller_Plugin_Abstract
{
public function preDispatch(\Zend_Controller_Request_Abstract $request)
{
$request->setControllerName('foo')
->setActionName('bar')
->setDispatched(false);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment