-
-
Save TiuTalk/1919274 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
public function view($codigo = null) { | |
// Encontra a notícia pelo campo código | |
$noticia = $this->Noticia->findByCodigo($codigo); | |
// Não encontrou? | |
if (empty($noticia)) | |
throw new NotFoundException(__('Invalid noticia')); | |
// Passa pra view | |
$this->set('noticia', $noticia); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment