Skip to content

Instantly share code, notes, and snippets.

@blackymetal
Created June 23, 2011 14:59
Show Gist options
  • Save blackymetal/1042688 to your computer and use it in GitHub Desktop.
Save blackymetal/1042688 to your computer and use it in GitHub Desktop.
Redirecting and passing $this->data
// for example, to reroute to users/delete
// this is in the controller which receives the request.
// this could even be in the AppController
$this->autoRender = false;
$d = new Dispatcher();
$d->dispatch(
array("controller" => "users", "action" => "delete"),
array("data" => $this->data)
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment