unbindModel() and paginate() gotcha in CakePHP 1.2
A small note to myself regarding a gotcha which I ran into today morning with the built in unbindModel method which lets you disassociate model relations on the fly.
#1 Model->unbindModel() works only for the very next next operation of the model, well nothing new here it is written in the Book.
#2 $this->paginate() runs more than one operation on the model
So if you do something like
and then run a findAll() it works fine but if you do a $this->paginate() it gets all the associated models because after the first operation the bindings are again automagically put in place for you.
Of course there is a way to keep the unbind in place for the rest of the request - this is done by sending the second param to the unbindModel() as false. So your code would now look like
running paginate now works as expected.
The catch is that the book. mentions that the second param should be set to true for the unbind to persist through the rest of the request - so I am not sure if this is a bug in the code or a typo in to book, have edited the book as per the above, if the edit is accepted then I guess it was a typo...
Whatever the case - the thing to remember is that unbindModel will always need the second param for it to work with paginate()
About this entry
You’re currently reading “ unbindModel() and paginate() gotcha in CakePHP 1.2 ,” an entry on SANIsoft – PHP for E Biz
- Published:
- 3.3.08 / 11:48am
- Author:
- Tarique Sani
11 Comments
Jump to comment form | comments rss | trackback uri