I have a Favorite Model linked to my User Model. His relation is done with HasMany. So i can retrieve all the Favorites from any user like this.
[User] => Array
(
[id] => 60
[username] => username
[email] => xxxxxx@gmail.com
)
[Favorite] => Array
(
[0] => Array
(
[id] => 7
[book_id] => 15
[user_id] => 60
[position] => 1
[created] => 2012-08-08 04:08:54
)
[1] => Array
(
[id] => 6
[book_id] => 17
[user_id] => 60
[position] => 1
[created] => 2012-07-26 04:08:32
)
)
But this Result doesnt show me all the Book data and related objects. so i i decided to find them with a find('all') giving the list of ids ([15,16 ....]). The only problem is that its not linked to my order on Favorite.created DESC. It retrieve me the Books Items in another order.
my query actually, look like:
$result = $this->User->findById($id);
$conditions = array('Book.id' => Set::extract($result, 'Favorite.{n}.book_id'));
$favorites = $this->Book->find('all', array('conditions' => $conditions));
Any idea how i can change my model relation? or my query in cakephp?
