marianoiglesias
Pagination with custom find types in CakePHP
protected $_types = array(
'published' => array(
'conditions' => array('Post.published' => 1),
'order' => array('Post.created' => 'desc')
)
);
とするだけで、
$posts = $this->Post->find('published');
と、
$this->paginate['Post'] = array(
'published',
'limit' => 10
);
ができてしまうという、超絶テクニックを公開しています。
ラベル:cakephp




