Skip to content

Instantly share code, notes, and snippets.

@gabrielslau
Created February 26, 2012 21:51
Show Gist options
  • Save gabrielslau/1919160 to your computer and use it in GitHub Desktop.
Save gabrielslau/1919160 to your computer and use it in GitHub Desktop.
public function view($id = null) {
$this->Noticia->id = $id;
if (!$this->Noticia->exists()) {
throw new NotFoundException(__('Invalid noticia'));
}
$this->set('noticia', $this->Noticia->read(null, $id));
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment