Advertisement
Guest User

Untitled

a guest
Aug 31st, 2015
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. <?PHP
  2. class NoticiasController extends AppController
  3. {
  4.  
  5. public function read()
  6. {
  7. $slug = $this->request->param('noticia'); //Pega o slug da notícia vindo do router...
  8. $noticia = $this->Noticia->findBySlug($slug); //Pega a notícia baseada no slug
  9. $this->set(compact('noticia')); //Envia pra view
  10. }
  11.  
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement