Skip to content

Instantly share code, notes, and snippets.

@shahariaazam
Created May 8, 2014 01:27
Show Gist options
  • Save shahariaazam/60648cdce0b9e2193cd2 to your computer and use it in GitHub Desktop.
Save shahariaazam/60648cdce0b9e2193cd2 to your computer and use it in GitHub Desktop.
<?php
class ArticlesController extends AppController
{
public $components = array('Paginator');
public function test()
{
$this->Paginator->settings['Article'] = array(
'contain' => array('Category' => array(
'conditions' => array('Category.id' => 2)
)),
);
$articles = $this->Paginator->paginate('Article');
var_dump($articles); die();
}
}
@shahariaazam
Copy link
Author

Output

asdf

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment