Skip to content

Instantly share code, notes, and snippets.

@TiuTalk
Created July 17, 2011 15:16
Show Gist options
  • Select an option

  • Save TiuTalk/1087675 to your computer and use it in GitHub Desktop.

Select an option

Save TiuTalk/1087675 to your computer and use it in GitHub Desktop.
<?php
class NoticiasController extends AppController {
public function index() {
// Parâmetros de consulta
$params = array(
'conditions' => array('Noticia.active' => true),
'order' => array('Noticia.created' => 'DESC'),
'limit' => 5
);
// Roda a consulta
$ultimas = $this->Noticia->fund('all', $params);
// Manda para a View
$this->set('noticias', $ultimas);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment