Guest User

Untitled

a guest
Feb 19th, 2018
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.80 KB | None | 0 0
  1. $options = array('conditions'=>$final,'order'=>$order,'group'=>array('Project.id'),'joins'=>array(
  2. array(
  3. 'table'=>'project_categories',
  4. 'alias'=>'ProjectCategory',
  5. 'type' => 'LEFT',
  6. 'conditions'=>array('ProjectCategory.project_id = Project.id')
  7. ),
  8. array(
  9. 'table'=>'categories',
  10. 'alias'=>'Category',
  11. 'type' => 'LEFT',
  12. 'conditions'=>array('ProjectCategory.category_id = Category.id')
  13. ),
  14. ));
  15.  
  16.  
  17. $this->paginate = $options;
  18.  
  19. $projects = $this->paginate("Project");
Add Comment
Please, Sign In to add comment