Skip to content

Instantly share code, notes, and snippets.

@chardcastle
Created September 12, 2011 12:17
Show Gist options
  • Save chardcastle/1211130 to your computer and use it in GitHub Desktop.
Save chardcastle/1211130 to your computer and use it in GitHub Desktop.
Kohana 1.3.1 useful snippets
// Get current controller
Request::current()->controller();
// Throw errors
throw new Http_Exception_404('File not found!');
throw new Http_Exception_500('Server tantrum');
// Last query
ORM::factory([MODEL_NAME])->last_query();
// Redirect
$this->request->redirect('foo/bar');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment