Looking for more information on how to do PHP the right way? Check out PHP: The Right Way

PHP-Coding-Practices.com:
Making CakePHP's Pagination work with Model::expects()
Aug 24, 2007 @ 12:55:00

Tim Koschuetzki has posted a new CakePHP-related tutorial to the PHP-Coding-Practices.com website today showing a method that gets the framework's pagination to cooperate with a Model's expects() method.

Making CakePHP's pagination work together with Mariano Iglesias' expect functionality seems to be impossible. The expect()'ed associations are only used in the paginator's findCount() call, but not in the findAll() call which actually retrieves the results. Come on join me and find out how to fix this.

His solution involves the creation of a custom pagination method that ends up calling the Paginator helper with some special parameters (replacing the non-cooperative defaults).

tagged: cakephp framework pagination model expects method cakephp framework pagination model expects method

Link:


Trending Topics: