Re: New to Cake, questions about views, htmlhelpers and saving data

2008-04-09 Thread Joel
If you're looking to modify the data before it is saved to the DB, then you need to use the Model::beforeSave() callback, or whichever filter is appropriate for your needs. Also, the automatic password hashing is only present in the official Auth component of CakePHP 1.2. The blog tutorial was w

Re: New to Cake, questions about views, htmlhelpers and saving data

2008-04-09 Thread Marcin Domanski
come on irc #cakephp @ freenode as for the original question: >How does one go about modifying the data before it is saved? the most appropriate place is the models beforeSave() callback On Wed, Apr 9, 2008 at 11:05 PM, Brian <[EMAIL PROTECTED]> wrote: > I have looked at both quite a bit. I will

Re: New to Cake, questions about views, htmlhelpers and saving data

2008-04-09 Thread Brian
I have looked at both quite a bit. I will have to take another look and see if I can find some examples to work with. Thanks On Wed, Apr 9, 2008 at 5:01 PM, Sliv <[EMAIL PROTECTED]> wrote: > > Have you looked at http://book.cakephp.org and searched > http://bakery.cakephp.org > yet? There's qu

Re: New to Cake, questions about views, htmlhelpers and saving data

2008-04-09 Thread Sliv
Have you looked at http://book.cakephp.org and searched http://bakery.cakephp.org yet? There's quite a bit more info there than in the manual. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Cake PHP" group. To p

New to Cake, questions about views, htmlhelpers and saving data

2008-04-09 Thread Brian
First off I am familiar with php and mysql, I can create small applications (although they might not be too efficient.) So, I decided to get my feet wet with CakePHP. I figured I would create a user based system and then can add on aspects of my applications from there. I first started off with