Skip to content

Instantly share code, notes, and snippets.

@jonasporto
Last active August 29, 2015 14:04
Show Gist options
  • Save jonasporto/24baea860f35d35de1af to your computer and use it in GitHub Desktop.
Save jonasporto/24baea860f35d35de1af to your computer and use it in GitHub Desktop.
Simples paginação cakephp
$this->paginate = array('conditions'=>array('id'=>1),'fields'=>'lat');
$result = $this->paginate('Model');
or
$this->paginate('model',array('conditions'));
$result = $this->paginate('Model',array('id'=>1));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment