Guest User

Untitled

a guest
Oct 17th, 2017
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.48 KB | None | 0 0
  1. $params = array(
  2. 'conditions'=>array('ProductCategory.parent_id'=>0),
  3. 'order' => 'ProductCategory.name',
  4. 'recursive' => 2,
  5. 'contain' => array(
  6. 'ChildProductCategory' => array(
  7. 'conditions' => array(
  8. 'ChildProductCategory.product_count >' => 0
  9. ),
  10. 'ChildProductCategory' => array(
  11. 'conditions' => array(
  12. 'ChildProductCategory.product_count >' => 0
  13. ),
  14. ),
  15. ),
  16. )
  17. );
Add Comment
Please, Sign In to add comment