http://hijiriworld.com/web/cakephp-%E3%83%9A%E3%83%BC%E3%82%B8%E3%83%8D%E3%83%BC%E3%82%B7%E3%83%A7%E3%83%B3%E3%82%92%E6%94%BB%E7%95%A5%E3%81%99%E3%82%8B/
コンディションをいれて絞り込む
[php]
$conditions = array(‘part’ => 5);
$data = $this->paginate($conditions);
[/php]
又は’マイページ’
[php]
//ログインユーザーデータを取得して、ReportとbelongToでつながっているChildのユーザーIDと同じやつのReportデータだけ取得
$userinfo = $this->Auth->user(array(‘fields’ => ‘id’));
$conditions = array(‘Child.user_id’ => $userinfo);
$this->Report->recursive = 0;
//debug($this->Report->recursive = -2);
$this->set(‘reports’, $this->paginate($conditions));
[/php]