Skip to content

Instantly share code, notes, and snippets.

@violetyk
Created October 11, 2011 03:20
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save violetyk/1277188 to your computer and use it in GitHub Desktop.
Save violetyk/1277188 to your computer and use it in GitHub Desktop.
[cakephp]コントローラに設定するpainate
<?php
var $paginate = array(
'Staff' => array(
'fields' => array('Staff.id', 'Staff.email', 'Staff.staff_name', 'Staff.status'),
'limit' => 10,
'order' => array('Staff.id' => 'desc'),
'conditions' => array(
'Staff.status >= ?' => array( 1 ),
),
'recursive' => -1,
),
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment